-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
executable file
·32 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Online Digital Clock</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript" src="js/alarm.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="digitalClock">
<canvas id="clockCanvas" width="660" height="260">
<p>Your browser doesn't support the Canvas Element.</p>
</canvas>
<audio id="alarmBeep">
<source src="audio/beep-6.ogg" />
<source src="audio/beep-6.mp3" />
<p>Your browser doesn't support Audio.</p>
</audio>
<p>
<a href="#" id="setAlarm" class="button">Set Alarm</a>
<a href="#" id="cancel" class="button">Cancel</a>
</p>
</div>
</body>
</html>