-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1.33 KB
/
index.html
File metadata and controls
33 lines (31 loc) · 1.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API Challenge Two</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<h1 class="title">Super Crazy GIF Search</h1>
<p>Courtesy of the GIPHY API.</p>
</header>
<div class="wrapper">
<form class="questionOne">
<h3 class="questionSizing">Let's find you a <label class="btn btn-outline-light">
<input type="radio" class="pickBtn giforSticker" name="type" id="option1" value="gif"> <h3>GIF</h3>
</label> or a <label class="btn btn-outline-light">
<input type="radio" class="pickBtn giforSticker" name="type" id="option2" value="sticker"> <h3>sticker</h3>
</label>.</h3>
</form>
<form id="otherQuestion">
</form>
<form id="lastQuestion">
</form>
</div>
<script src="index.js"></script>
</body>
</html>