-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 972 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stopwatch</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="stopwatch">
<h1>Click to start and click to stop</h1>
<div id="curTime">0</div>
<div id="display"></div>
<div class="button-group">
<button id="start" type="button" aria-label="Start">Start</button>
<button id="stop" type="button" aria-label="Stop">Stop</button>
<button id="reset" type="button" aria-label="Reset">Reset</button>
<button id="lapse" type="button" aria-label="Lapse">Lapse</button>
<button id="pause" type="button" aria-label="Pause">Pause</button>
<button id="continue" type="button" aria-label="Continue">Continue</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>