-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (51 loc) · 2.22 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Favorite Cartoon Series</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 href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="jumbotron">
<div class="container text-center shadow">
<h2><b>My Favorite TV Shows</b></h2>
</div>
</div>
<!-- main Container -->
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<!-- button -->
<div id="buttons-view">
</div>
</div>
</div>
<!-- submit Form-->
<div class="row">
<div class="col-xs-9 col-sm-9 col-md-9 col-lg-9">
<!-- gifs -->
<div id="shows-view">
</div>
</div>
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-3">
<form id="gifForm" role="form">
<div class="form-group">
<label for="topicInput"><h4>Add Your Favorite!</h4> </label>
<input type="text" id="topicInput">
</div>
<input id="addShow" type="submit" value="Add TV Show" class="btn btn-primary">
<input id="removeShows" type="submit" value="Remove TV Shows" class="btn btn-primary">
</form>
<img src="assets/images/adultSwim9.gif" alt="tvGiphy" width="180">
</div>
</div>
<p>Click on Image to Play and Pause!</p>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script type="text/javascript" src="assets/javascript/app2.js"></script>
<!-- <script type="text/javascript" src="assets/javascript/app.js"></script> -->
</body>
</html>
</body>