-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (38 loc) · 1.1 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
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" type="text/css">
<title>Clock and Timer</title>
</head>
<body>
<div id="clock">
<div id="longDate">
</div>
<div id="time">
<div id="timeHours"></div>
<div id="colon1">:</div>
<div id="timeMinutes"></div>
<div id="colon2">:</div>
<div id="timeSeconds"></div>
</div>
<div id="timer">
<div id="timerMinutes">00</div>
<div id="colon1">:</div>
<div id="timerSeconds">00</div>
<div id="colon2">:</div>
<div id="timerHunds">00</div>
</div>
<div id="buttons">
<button id="start">Start</button>
<button id="stop">Stop</button>
<button id="reset">Reset</button>
<button id="lap">Lap</button>
</div>
<ol id="lapOl">
</ol>
</div>
<script src="main.js"></script>
</body>
</html>