-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 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
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta author="Mike Wrobel" description="AJAX based GIF displayer using GIPHY API">
<title>GIF Tastic</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/style.css" />
</head>
<body>
<header>
<jumbotron >
Check Out Some Cool Pics!
</jumbotron>
</header>
<div id=container>
<main>
<!-- Topics buttons get added here -->
<div id="topic-buttons">
</div>
<!-- Form supporting addition of new topics -->
<form id="topic-form">
<label for="topic-input" class="topic-text">Add a topic</label>
<input type="text" id="topic-input" class="topic-text"><br>
<input type="submit" id="add-topic" value="Submit">
</form>
<p id="image-instructions">Click on image to animate it</p>
<!-- Topic images get added here -->
<div id="topic-images">
</div>
</main>
</div>
<footer>
<img id=powered-by src="assets/images/PoweredBy_200_Horizontal_Light-Backgrounds_With_Logo.gif"></img>
</footer>
<!-- The GIF Tastic JavaScript -->
<script src="assets/javascript/app.js"></script>
</body>
</html>
</DOCTYPE>