forked from apg/timer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (26 loc) · 1.17 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Hack and Tell Timer</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en-us" />
<meta name="ROBOTS" content="all" />
<meta name="googlebot" content="noodp" />
<meta name="MSSmartTagsPreventParsing" content="true" />
<meta name="author" content="Andrew Gwozdziewycz" />
<link rel="shortcut icon" href="http://www.hackandtell.org/favicon.ico" type="image/x-icon" />
<link rel="icon" href="http://www.hackandtell.org/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="timer.css" />
</head>
<body>
<div id="wrapper" class="ok">
<div id="timer"></div>
</div>
<script src="jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="jquery.fit.js" type="text/javascript"></script>
<script src="timer.js" type="text/javascript"></script>
<audio id="sound" src="clapping.mp3" autobuffer>
</audio>
</body>
</html>