-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstopwatch.html
More file actions
26 lines (26 loc) · 930 Bytes
/
stopwatch.html
File metadata and controls
26 lines (26 loc) · 930 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Stopwatch</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto+Mono:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="stopwatch.css">
</head>
<body>
<div class="container">
<div class="timerDisplay">
00 : 00 : 00 : 000
</div>
<div class="buttons">
<button id="startTimer">Start</button>
<button id="pauseTimer">Pause</button>
<button id="resetTimer">Reset</button>
</div>
<div class="buttons">
<a href="clock.html"><button id="digital">Digital clock</button></a>
<a href="analogClock.html"><button id="analog">Analog clock</button></a>
</div>
</div>
<script src="stopwatch.js"></script>
</body>
</html>