-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (35 loc) · 1.5 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
<html>
<head>
<title>Photo Schedule</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/icons/favicon-16x16.png">
<link rel="manifest" href="assets/icons/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="assets/css/stylesheet.css">
</head>
<body>
<div class="header bg-dark text-center">
<h6 class="text-light" style="padding-top: 5px;"><b>Email feedback and new item ideas to <a href="mailto:feedback@covidkidsonline.com" class="text-light">feedback@covidkidsonline.com</a>.</b></h6>
</div>
<div id="optionDiv" class="header ml-3 mr-3 mt-3">
<select id="myInput">
<option value="" disable selected>Select A Schedule Item</option>
<option>Math ➕</option>
<option>Art 🎨</option>
<option>Reading 📖</option>
<option>Writing 🖊</option>
<option>Music 🎵</option>
<option>Story Time 📖</option>
<option>Gym 🏋</option>
<option>Lunch 🍴</option>
<option>Science 🔬</option>
<option>Dismissal 🚌</option>
</select>
<span onclick="newElement()" class="add-item-button">Add</span>
</div>
<ul id="list" class="list-group ml-3 mr-3">
</ul>
<script src="assets/js/main.js"></script>
</body>
</html>