-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StopWatch</title>
<link rel="stylesheet" href="style.css">
</head>
<body id="body">
<!-- dark mode toggle -->
<div class="darkmode-section">
<div id="darkMode">
<img src="https://raw.githubusercontent.com/zJasHeshz/baby_stopwatch/main/img/dark.png" alt="" id="darkmode-img">
</div>
</div>
<!-- titile -->
<h1 class="text" id="title">Stop Watch</h2>
<!-- motto text -->
<p class="text" id="mottoText">“Time you enjoy wasting is not wasted time.”</p>
<!-- display -->
<div id="timeDisplay">
<h1 class="text time"><span id="minutes">00</span> : <span id="seconds">00</span> : <span
id="hundredthOfASecond">00</span>
</h1>
</div>
<!-- buttons -->
<div class="btn-section">
<button class="text btn" id="btnStart">start</button>
<button class=" text btn" id="btnStop">stop</button>
<button class="text btn" id="btnReset">reset</button>
</div>
<script src="script.js"></script>
</body>
</html>