-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (86 loc) · 2.93 KB
/
index.html
File metadata and controls
89 lines (86 loc) · 2.93 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Timer and Stopwatch</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="content">
<h3>Timer and Stopwatch</h3>
<p class="type">Select one</p>
</div>
<div class="outer-wrapper">
<button class="btn stopwatch-btn">Stopwatch</button>
<button class="btn timer-btn">Timer</button>
<div class="stopwatch hidden">
<div class="wrapper">
<div class="main">
<div class="hour">
<p class="number" id="stopwatch-hour">00</p>
<p>Hours</p>
</div>
<p class="colon">:</p>
<div class="min">
<p class="number" id="stopwatch-min">00</p>
<p>Minutes</p>
</div>
<p class="colon">:</p>
<div class="sec">
<p class="number" id="stopwatch-sec">00</p>
<p>Seconds</p>
</div>
<p class="colon">:</p>
<div class="ms">
<p class="number" id="stopwatch-ms">00</p>
<p>Milliseconds</p>
</div>
</div>
</div>
<div class="laps">
</div>
<div class="btns">
<button class="btn start-stopwatch">Start</button>
<button class="btn lap-stopwatch hidden">Lap</button>
<button class="btn reset-stopwatch">Reset</button>
</div>
</div>
<div class="timer hidden">
<div class="wrapper">
<div class="main">
<div class="hour">
<p class="number" id="timer-hour">00</p>
<p>Hours</p>
</div>
<p class="colon">:</p>
<div class="min">
<p class="number" id="timer-min">00</p>
<p>Minutes</p>
</div>
<p class="colon">:</p>
<div class="sec">
<p class="number" id="timer-sec">00</p>
<p>Seconds</p>
</div>
<p class="colon">:</p>
<div class="ms">
<p class="number" id="timer-ms">00</p>
<p>Milliseconds</p>
</div>
</div>
</div>
<div class="btns">
<button class="btn set-timer">Set</button>
<button class="btn start-timer">Start</button>
<button class="btn stop-timer hidden">Stop</button>
<button class="btn reset-timer">Reset</button>
</div>
</div>
</div>
</div>
<footer>Made by Om Auti:)</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>