-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
37 lines (29 loc) · 1.06 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
34
35
36
37
<html>
<head>
<title>SESA Stopwatch</title>
<link rel="stylesheet" href="timer.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div class="container">
<form action="" id="timer-setup">
<h1>SESA Stopwatch</h1>
<input type="number" id="minutes" min="0" value="15"/>
<label for="minutes">Minutes</label>
<input type="number" id="seconds" min="0" max="59" value="00" />
<label for="seconds">Seconds</label>
<br>
<input type="radio" id="upwards" name="direction" value="up" checked>
<label for="upwards">Upwards</label>
<input type="radio" id="downwards" name="direction" value="down">
<label for="downwards">Downwards</label>
<br>
<button type="submit">Begin</button>
</form>
<div id="countdown">
<h1 class="display">00:00</h1>
<button class="cancel">×</button>
</div>
</div>
<script src="timer.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>