-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (67 loc) · 2.79 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
<html>
<head>
<title>Sup Gifs</title>
<link rel="stylesheet" href="assets/css/style.css">
<!-- Bootswatch -->
<link rel="stylesheet" type="text/css" href="http://bootswatch.com/yeti/bootstrap.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico'/>
<!-- Latest compiled and minified JavaScript -->
</head>
<body>
<!-- Jumbotron -->
<div class="container">
<div class="jumbotron">
<h1 class="display-3">Getting Giphy With It</h1>
<p class="lead">Channel your inner Will Smith and search for your favorite '90s artists.</p>
<hr class="m-y-md">
<p class="create">Create a button, then use it to discover the perfect gif.</p>
<!-- close jumbotron -->
</div>
<div class="row">
<!-- <div class="col-lg-12"> -->
<!-- Form to input search -->
<div id="buttonsView">
<!-- close buttonsView -->
</div>
<!-- close column -->
<!-- </div> -->
<!-- close row -->
</div>
<div class="row">
<div class="col-lg-12">
<form id="gif-form">
<!-- <label for="gif-input" class="fa fa-plus-square-o" aria-hidden="true"> Add a '90s Artist</label> -->
<input type="text" id="gif-input"><br>
<button id="addArtist" for="gif-input" class="btn btn-warning btn-lg" type="submit" value="Add an Ill Artist"> Add an Ill Artist</button>
</form>
<!-- close column -->
</div>
<!-- close row -->
</div>
<div class="row">
<div class="col-lg-12">
<!-- Gifs -->
<div id="gifsView">
<!-- close gifsView -->
</div>
<!-- close column -->
</div>
<!-- close row -->
</div>
<!-- close container -->
</div>
<!-- JQuery-->
<script src="https://code.jquery.com/jquery-2.2.4.js" integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI=" crossorigin="anonymous"></script>
<!-- Bootstrap JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Javascript -->
<script type="text/javascript" src="assets/javascripts/gifs.js"></script>
</body>
</html>