-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Twitch.tv Stream Status</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="row">
<h1>Twitch.tv Streams</h1>
</div>
<div class="row">
<div class="streams-container">
<ul class="streams">
<!-- <li class="stream live">
<div class="icon"><img src="https://static-cdn.jtvnw.net/jtv_user_pictures/esl_sc2-profile_image-d6db9488cec97125-300x300.jpeg" alt=""></div>
<div class="name"><a href="https://www.twitch.tv/ESL_SC2">ESL_SC2</a></div>
<div class="status"><span class="game">StarCraft II:</span> RERUN: jjakji vs. MaNa - EU Qualifier Stage 2</div>
</li>
<li class="stream">
<div class="icon"><img src="https://static-cdn.jtvnw.net/jtv_user_pictures/freecodecamp-profile_image-d9514f2df0962329-300x300.png" alt=""></div>
<div class="name"><a href="https://www.twitch.tv/FreeCodeCamp">FreeCodeCamp</a></div>
<div class="status">offline</div>
</li>-->
</ul>
</div>
</div>
<div class="row">
<footer>
Designed and developed by <a href="https://www.github.com/thedeany">Brandon Dean</a>
</footer>
</div>
</div>
<script src="./twitch.js"></script>
</body>
</html>