-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (23 loc) · 908 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Favorite Holidays</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container">
<h1>Holiday Search</h1>
<!-- Buttons will Get Dumped Here -->
<div id="buttons-view"></div>
<form id="holiday-form">
<label for="holiday-input">Add a Holiday</label>
<input type="text" id="holiday-input"><br>
<!-- Button triggers new holiday to be added -->
<input id="add-holiday" type="submit" value="Submit">
</form>
<div id="holiday-view"></div>
</div>
<script rel="javascript" src="./assets/javascript/giphyapi.js"></script>
</body>