-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Stopwatch</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="stopwatch-container">
<div class="stopwatch-header">
<i class="fa-solid fa-stopwatch"></i>
<h1>Stopwatch</h1>
</div>
<div class="time-display">
<span id="hours">00</span>:
<span id="minutes">00</span>:
<span id="seconds">00</span>:
<span id="milliseconds">000</span>
</div>
<div class="controls">
<button id="startBtn"><i class="material-icons">play_arrow</i> Start</button>
<button id="pauseBtn" disabled><i class="material-icons">pause</i> Pause</button>
<button id="resetBtn" disabled><i class="material-icons">replay</i> Reset</button>
<button id="lapBtn" disabled><i class="material-icons">flag</i> Lap</button>
</div>
<div class="lap-times">
<h3>Lap Times</h3>
<ul id="lapList"></ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>