-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·36 lines (28 loc) · 883 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
<!DOCTYPE HTML>
<html>
<head>
<meta id="view" name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1">
<title>Creating a Countdown</title>
<link rel="stylesheet" type="text/css" href="my_countdown.css">
<script type="text/javascript" src="js/jquery-2.1.3.min.js"></script>
<script type="text/javascript" src="js/jquery.plugin.min.js"></script>
<script type="text/javascript" src="js/jquery.countdown.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.my-countdown').countdown({
until: $.countdown.UTCDate(-5, 2016, 7, 20, 0, 0 ),
format: 'dhms',
});
})
</script>
</head>
<body>
<div id="world-premier">
<div class="heading">
<h2>Countdown to</h1>
<h1>Buya's Boat Bash<h1>
</div>
<div class="my-countdown"></div>
</div>
</body>
</html>