-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (46 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>GifTastic</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- CSS Stylesheet -->
<link rel="stylesheet" href="./assets/style.css" media="screen">
</head>
<body>
<!-- ? Does the food type name need to reflect how it's searched in giphy? -->
<!-- <button data-food="hamburger">hamburger</button>
<button data-food="french fries">french fries</button>
<button data-food="cheesesteak">cheesesteak</button>
<button data-food="fried chicken">fried chicken</button>
<button data-food="hot wings">hot wings</button>
<button data-food="hotdog">hotdog</button>
<button data-food="tater tots">tater tots</button>
<button data-food="onion rings">onion rings</button>
<button data-food="chicken parmesean">chicken parmesean</button>
<button data-food="pasta">pasta</button>
<button data-food="mozzarella sticks">mozzarella sticks</button>
<button></button>
-->
<div class="container">
<div class="mb-5" id="buttonsDiv"></div>
<div class="row">
<div class="col-sm-8">
<div id="gifs-appear-here">
</div>
</div>
<div class="col-sm-4">
Add Food
<input type="text" id="food">
<button id="submitBtn">submit</button>
</div>
</div>
</div>
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- JavaScript -->
<script type="text/javascript" src="./assets/game.js"></script>
</body>
</html>