-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (43 loc) · 1.31 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
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Free Code Camp Twitch </title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/foundation/6.3.0/css/foundation.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<div class="row centrecontent">
<div class="medium-8 columns hero">
<h1 class="centrecontent">
TwitchTV Stream Monitor
</h1>
<h3 class="centrecontent">
Free Code Camp Exercise
</h3>
<div class="row centrecontent">
<div class="medium-12 columns">
<div class="medium-3 columns">
<input id="newStream" />
</div>
<div class="medium-1 columns">
<button id="add">Add</button>
</div>
<div class="medium-8 columns pull-right">
<button id="all">Show All</button><button id="on">Show Online</button><button id="off">Show Offline</button>
</div>
</div>
</div>
</div>
</div>
<div class="row centrecontent">
<div class="medium-8 columns">
<div id="channelBar"></div>
</div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>