-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwitch.html
56 lines (39 loc) · 1.37 KB
/
twitch.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
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="C:\Users\Ronald\Documents\sublimeWork\css\bootstrap.css">
<link rel="stylesheet" type="text/css" href="C:\Users\Ronald\Documents\sublimeWork\css\font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="twitchStyle.css">
<script src="jquery-3.1.1.js"></script>
<script src="twitch.js"></script>
<script src="C:\Users\Ronald\Documents\sublimeWork\js\bootstrap.min.js"></script>
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>-->
<title>Twitch Stream Viewer</title>
</head>
<body>
<div class="container">
<div class="jumbotron text-center">
<h1>Twitch Stream Viewer</h1>
</div>
<div class="side-bar inline">
<div class="row ">
<div class="all twitch ">
<p>All</p>
</div>
</div>
<div class="row">
<div class="online twitch">
<p>Online</p>
</div>
</div>
<div class="row">
<div class="offline twitch">
<p>Offline</p>
</div>
</div>
</div><!--END of side-bar-->
<div class="streaming ">
</div>
</div><!--ENd of container-->
</body>
</html>