-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<title>Countdown to Epicness</title>
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css" type="text/css" media="screen" charset="utf-8">
</head>
<body>
<div class="page-wrap">
<div class="container">
<p>
<label for="new-counter">New Countdown</label><input id="new-counter" class="eventInput" type="text"><button class="addButton">Add</button>
<input type="datetime-local" id="new-date">
</p>
<h3>Running countdowns</h3>
<ul id="running-countdowns">
<li><label class="eventLabel">Event</label><input class="eventInput" type="text"><button class="editButton">Edit</button><button class="deleteButton">Delete</button>
<label class="counterLabel">21d, 17h, 35min</label><input type="datetime-local" value="2015-12-19T16:39"></li>
</ul>
<h3>Completed countdowns</h3>
<ul id="completed-countdowns">
</ul>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.11.0.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/app.js" type="text/javascript" charset="utf-8"></script>
</body>
<footer>
© 2015 Simon Buysse
</footer>
</html>