-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (29 loc) · 1.05 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
<!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">
<script src="./js/app.js"></script>
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:800&display=swap" rel="stylesheet">
<title>GIPHY Search</title>
</head>
<body>
<div class="wrapper">
<div class="content">
<h1>GIPHY SEARCH</h1>
<section>
<input type="text" name="giphySearchText" id="giphySearchText">
<button type="button" name="searchGiphy" id="searchGiphy">Search GIPHY</button>
</section>
<section id="imageDivSection"><div class="imageDiv"></div></section>
</div>
</div>
<footer class="footer">
Created by Ben Nash for Advanced JavaScript
<br>
<img src="./images/Poweredby_100px-White_VertText.png" alt="GIPHY Logo">
</footer>
</body>
</html>