-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
52 lines (36 loc) · 1.65 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
52
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Twitch TV</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container outer">
<div class="container head">
<h1>TWITCH STREAMERS</h1>
</div>
<div class="container in">
<img class="smaller-image img" src="https://static-cdn.jtvnw.net/jtv_user_pictures/esl_sc2-profile_image-d6db9488cec97125-300x300.jpeg">
<a href="https://www.twitch.tv/esl_sc2" target="blank">ESL SC2</a>
<p id="st1"></p>
</div>
<div class="container in">
<img class="smaller-image img" src="https://static-cdn.jtvnw.net/jtv_user_pictures/freecodecamp-profile_image-d9514f2df0962329-300x300.png">
<a href="https://www.twitch.tv/freecodecamp" target="blank">FreeCodeCamp</a>
<p id="st2"></p>
</div>
<div class="container in">
<img class="smaller-image img" src="https://static-cdn.jtvnw.net/jtv_user_pictures/ogamingsc2-profile_image-9021dccf9399929e-300x300.jpeg">
<a href="https://www.twitch.tv/OgamingSC2" target="blank">Ogaming SC2</a>
<p id="st3"></p>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/systemjs-plugin-json/0.3.0/json.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/fdaciuk-ajax/2.3.0/ajax.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>