forked from nathanallen/giffaw
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathindex.html
39 lines (34 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- set viewport to device width to allow responsiveness -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="styles/styles.css">
<!-- JS -->
<script src="http://code.jquery.com/jquery-2.2.2.min.js"></script>
<script src="scripts/app.js"></script>
<title>Giffaw</title>
</head>
<body>
<div class="container">
<h1 class="text-center">Giffaw</h1>
<div class="row">
<div class="col-sm-4">
<form class="form-inline">
<label>Search Gifs</label>
<input type="text" class="form-control gif-input" name="q" value="cats" placeholder="search gifs">
<input type="hidden" name="api_key" value="dc6zaTOxFJmzC">
<input type="submit" value="Go!" class="btn btn-primary">
</form>
</div>
<div class="col-sm-8">
<div class="gif-gallery"></div>
</div>
</div>
</div>
</body>
</html>