-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcountdown.html
More file actions
executable file
·29 lines (28 loc) · 895 Bytes
/
countdown.html
File metadata and controls
executable file
·29 lines (28 loc) · 895 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<script src="countdown.js"></script>
<title>Countdown</title>
<style>
input[type=number]{ width: 30px; }
li {
text-align: right;
display: block;
}
ul {
width: 150px;
}
</style>
</head>
<body style="background-color: white;">
<ul>
<li>Hours <input id="hours" type="number" min="0" value="0"/></li>
<li>Minutes <input id="minutes" type="number" min="0" max="60" value="0"/></li>
<li>Seconds <input id="seconds" type="number" min="0" max="60" value="0"/></li>
</ul>
<input type="button" value="Start Timer" onclick="setTime()"/><input type="button" onclick="cancelAlert()" value="End Alert">
<span id="countdown" class="timer"></span>
<div id="audio_file"></div>
</body>
</html>