-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (45 loc) · 1.52 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title of the page -->
<title>Stop Watch</title>
<!-- External stylesheet inclusion -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Title of the page -->
<h1 class="title">Stopwatch</h1>
<!-- Main content container -->
<div class="main">
<!-- Container for displaying stopwatch time -->
<div class="con1">
<div class="con2">
<!-- Time display elements -->
<span class="minutes">00:</span>
<span class="seconds">00:</span>
<span class="miliseconds">00</span>
</div>
</div>
</div>
<!-- Button container for Start, Reset, and Laps buttons -->
<div class="butcon">
<!-- Start button -->
<button class="start">Start</button>
<!-- Reset button (initially hidden) -->
<button class="reset dont-show">Reset</button>
<!-- Laps button (initially hidden) -->
<button class="laps dont-show">Laps</button>
<!-- Button to clear all lap times -->
<button class="clear-all">Clear All</button>
</div>
<!-- Container for displaying lap times -->
<div class="laps-container">
<!-- Lap time items will be dynamically added here -->
</div>
<!-- JavaScript file inclusion -->
<script src="script.js"></script>
</body>
</html>