-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (45 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fun with GIFs</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
</head>
<body>
<div class="jumbotron-fluid text-center text-heading">
<h1 class="display-4">Yummy GIFs</h1>
<p class="lead">Satisfy your hunger for animated images about food.</p>
</div>
<div class="container-fluid">
<row>
<div class="col-md-12 page-instructions">
<p>Click a button to see GIFs about that kind of food. Then, click an image animate it and click again to pause.</p>
</div>
</row>
<row>
<div class="col-sm-12" id="gif-buttons">
</div>
</row>
<row>
<div class="col-sm-4 float-right">
<form id="food-form">
<label for="food-input" id="food-label">Add food</label>
<p id="instructions">Use the search box to add a new button and see more fun food GIFs.</p>
<input type="text" class="form-control" id="food-input">
<input class="btn btn-default" id="add-food" type="submit" value="Submit">
</form>
<img class="float-right" src="assets/images/PoweredBy_200px-White_HorizLogo.png" id="attribution" alt="GIPHY attribution">
</div>
</row>
<row>
<div class="gif-images col-sm-8" id="gif-container">
</div>
</row>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="assets/javascript/app.js"></script>
</body>
</html>