forked from Montana-Code-School/giphyAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (29 loc) · 923 Bytes
/
index.html
File metadata and controls
35 lines (29 loc) · 923 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
<script src="https://use.fontawesome.com/b4ccb25300.js"></script>
<title>Giphy API</title>
</head>
<body>
<div class="main">
<header>
<h1>The Giphy Line-Up</h1>
</header>
<div class="inputs">
<input id="inputText" type="text" name="name" value="Search Gifs Here!">
<input id="subButton" type="button" value="Submit">
</div>
<div class="listContainer">
<div class="gifList"><img src="">
</div>
</div>
<footer>
<h3>(c) MTCS Copyright 2016. All rights reserved.</h3>
</footer>
</div>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src = "app.js"></script>
</body>
</html>