-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (27 loc) · 1.09 KB
/
index.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
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<meta name="description" content="Who is the bigger streamer?">
<title>Who is the bigger streamer?</title>
<link rel="stylesheet" href="main.css">
<body>
<h1>Who is the Bigger Streamer?</h1>
<h2>by concurrent viewers in the last 30 days</h2>
<p id="points">Score: 0</p>
<div class="streamers" id="container">
<div class="box1">
<img id="pic1" class="img" src="https://static-cdn.jtvnw.net/jtv_user_pictures/asmongold-profile_image-f7ddcbd0332f5d28-300x300.png">
<p class="name" id="s1">Asmongold</p>
</div>
<div class="box2">
<img id="pic2" class="img" src="https://static-cdn.jtvnw.net/jtv_user_pictures/asmongold-profile_image-f7ddcbd0332f5d28-300x300.png">
<p class="name" id="s2">Asmongold</p>
</div>
</div>
<button id="againBtn" type="button">Play Again?</button>
</div>
</body>
<link rel="stylesheet" href="main.css">
<script type="module" src="app.js"></script>
<script type="module" src="data.js"></script>
<br>
</html>