forked from rocketacademy/timer-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 929 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 929 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
30
31
<!DOCTYPE html>
<html>
<head>
<title>Timer</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<div id="lap-data"></div>
<div class="timer">
<span id="hour">00 : </span>
<span id="minute"> 00 : </span>
<span id="second"> 00 : </span>
<span id="milli-second">00</span>
</div>
<div class="button-container">
<div class="button-roll1">
<button id="start-button" class="buttons">start</button>
<button id="stop-button" class="buttons">stop</button>
</div>
<div class="button-roll2">
<button id="reset-button" class="buttons">reset</button>
<button id="lap-button" class="buttons">lap</button>
</div>
</div>
<!-- Import program logic -->
</div>
<script src="script.js"></script>
</body>
</html>