forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stopwatch</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Geologica:[email protected]&family=Jersey+10&family=Orbitron:[email protected]&family=Rubik+80s+Fade&family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Geologica:[email protected]&family=Jersey+10&family=Orbitron:[email protected]&family=Rubik+80s+Fade&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Jersey+10&family=Orbitron:[email protected]&family=Rubik+80s+Fade&display=swap" rel="stylesheet"> </head>
<link href="https://fonts.googleapis.com/css2?family=Foldit:[email protected]&family=Geologica:[email protected]&family=Jersey+10&family=Orbitron:[email protected]&family=Rubik+80s+Fade&family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<body>
<h1>STOPWATCH</h1>
<div class="container">
<div class="timer-display">
00 : 00 : 00 : 000
</div>
<div class="buttons">
<button id="start-timer">START</button>
<button id="pause-timer">PAUSE</button>
<button id="reset-timer">RESET</button>
</div>
<div class="laps-container">
<button id="laps-timer">LAPS</button>
</div>
</div>
<div class="laps-items">
</div>
<script src="script.js"></script>
</body>
</html>