-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.48 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">
<title>Giphy API</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<h1 class="gifTitle">Elliott's Giphy Search Tool</h1>
</header>
<header class="searchList"></header>
<div class="gifs"></div>
<div class="searchBox">
<form>
<h5>Add search buttons here</h5>
<input class="gifSearch" type="text">
<button type="submit" class="gifAddButton">Add to List</button>
<button type="submit" class="gifSearchButton">Add and Search</button>
<div class="sizeSelectors">
<input type="radio" class="original" name="size" value ="original">Original</input>
<input type="radio" class="medium" name="size" value="fixed_height">Medium</input>
<input type="radio" class="small" name="size" value="fixed_height_small">Small</input>
</div>
<form>
<h5>Number of gifs to get.</h5>
<input type="number" class="numberOfGifs" value="10">
<button type="submit" class="refresh">Refresh</button>
</form>
</form>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="assets/javascript/app.js"></script>
</body>
</html>