-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstopwatch.html
More file actions
38 lines (38 loc) · 1.61 KB
/
stopwatch.html
File metadata and controls
38 lines (38 loc) · 1.61 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
<!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>Document</title>
<link rel="stylesheet" href="bootstrap-5.3.2-dist/css/bootstrap.css">
<link rel="stylesheet" href="css/stopwatch.css">
</head>
<body>
<a href="index.html"><button class="back"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-left" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"/>
</svg></button></a> <button type="button" class="btn dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
Stopwatch
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="timer.html">Timer</a></li>
<li><a class="dropdown-item" href="#">Stopwatch</a></li>
</ul>
<div style="text-align: center; align-items: center;">
<div class="waktu">
<h1 id="jam">00</h1>
<h1>:</h1>
<h1 id="menit">00</h1>
<h1>:</h1>
<h1 id="detik">00</h1>
</div>
<div id="tombol">
<button id="Start">Start</button>
<button id="Stop">Stop</button>
<button id="Reset">Reset</button>
</div>
</div>
<script src="js/popup4.js"></script>
<script src="bootstrap-5.3.2-dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>