-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 1.05 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
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<div class="main_box">
<div class="box">
<div class="time">
<h4>Hours</h4>
<h4>Minutes</h4>
<h4>Seconds</h4>
</div>
<div class="show">
<button class="clock">Timer</button>
<h2 id="display">00:00:00</h2>
</div>
<div class="btns">
<button class="btn" id="start">
<i class="fa-solid fa-play"></i>
</button>
<button class="btn" id="reset"><i class="fa-solid fa-stop"></i></button>
</div>
</div>
</div>
</body>
<script src="watch.js"></script>
</html>