-
Notifications
You must be signed in to change notification settings - Fork 0
/
overlay.html
29 lines (29 loc) · 974 Bytes
/
overlay.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="overlay.css">
<script src="overlay.js" defer></script>
<title>Stream Overlay</title>
</head>
<body>
<div class="frame"></div>
<div class="panel">
<h2>About Me</h2>
<p>Welcome to my stream! My name is...</p>
</div>
<div class="stream-label">
<span>Latest Follower: </span><span id="latest-follower">JohnDoe</span>
</div>
<div class="now-playing">
<span>Now Playing: </span><span id="now-playing-text">Loading...</span>
</div>
<!-- Add the following divs inside the body tag -->
<div class="particle particle-1"></div>
<div class="particle particle-2"></div>
<div class="particle particle-3"></div>
<div class="particle particle-4"></div>
</body>
</html>