-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.16 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.16 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
34
35
36
37
38
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<title>Disney Pixar Movies GIF Generator</title>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css?family=Chelsea+Market|Raleway" rel="stylesheet">
<!-- JQUERY -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<!-- H1 & Paragraph -->
<img src="assets/photos/characters.png" alt="disney pixar characters" class="header-img" />
<h1>Disney Pixar Movie GIFs</h1>
<p>Type in your favorite Disney Pixar movie in the space below to add it as a button.</p>
<p>Then click on the button to see 10 GIFs from the movie.</p>
<!-- Input & Submit Button -->
<form>
<input type="text" id="user-input">
<button type="submit" id="add-movie">Add Movie</button>
</form>
<br>
<!-- Buttons Div -->
<div id="buttons-div">
</div>
<!-- Gifs Div -->
<div id="gifs-div">
</div>
<!-- JAVASCRIPT -->
<script src="assets/javascript/javascript.js"></script>
</body>
</html>