-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.04 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>MegaClock</title>
<meta charset="utf-8" />
<link href="alarm.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<div id="alarm">
<p id="exceptionErrorMessage"></p>
<h1 id="timeleftInfo">
<span>The alarm will fire in </span>
<span id="timeSection">
<span id="h"></span><span id="colon1">:</span><span id="m"></span><span id="colon2">:</span><span id="s"></span>
</span>
</h1>
<!--Plays the sound when the notification is displayed-->
<!--<audio id="notifAudio" src="Sounds/notify.wav"></audio>-->
<h1 id="welcome">Set an alarm</h1>
<form>
<input id="timeInputField" type="time" step="1" />
<br />
<input id="setButton" type="button" value="Set Alarm!" />
<input id="clearButton" type="button" value="Clear" />
</form>
</div>
<script src="Scripts/alarm.js"></script>
<script src="Scripts/window.js"></script>
</body>
</html>