-
Notifications
You must be signed in to change notification settings - Fork 0
/
GifTastic.html
44 lines (41 loc) · 1.5 KB
/
GifTastic.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GifTastic Sports</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- <script src='http://code.jquery.com/jquery-2.1.3.min.js'></script> -->
</head>
<body>
<div class="container">
<header>
<h1 class="text-center">Sports Gif's</h1>
</header>
<!-- <div class="row"> -->
<div class="col-md-12">
<div class="topicButtons">
<div id="topics-view"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-12">
<form id="topic-form">
<label for="topic-input">Add a Sport:</label>
<input type="text" id="topic-input">
<!-- Button triggers new topic to be added -->
<input id="add-topic" type="submit" value="Submit">
</div>
</div>
</div>
</div>
</form>
<div id="gifsGoHere">
</div>
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<script type="text/javascript" src="assets/javascript/GifTastic.js"></script>
</body>
</html>