-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
31 lines (30 loc) · 750 Bytes
/
example.html
File metadata and controls
31 lines (30 loc) · 750 Bytes
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
<html>
<head>
<link rel="stylesheet" type="text/css" href="countdown.css">
<title>Countdown</title>
</head>
<body>
<div id="c">
<div class="countElement">
<span id="days"></span>
<div class="footer">day(s)</div>
</div>
<div class="countElement">
<span id="hours"></span>
<div class="footer">hour(s)</div>
</div>
<div class="countElement">
<span id="minutes"></span>
<div class="footer">minute(s)</div>
</div>
<div class="countElement">
<span id="seconds"></span>
<div class="footer">second(s)</div>
</div>
</div>
<script>
var date = "February 5, 2016 18:00:00";
</script>
<script src="countdown.js"></script>
</body>
<!-- Countdown Project v0.0.1 -->