-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (70 loc) · 2.58 KB
/
index.html
File metadata and controls
74 lines (70 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- css links -->
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/css reset.css" />
<!-- boxi icons -->
<link rel="stylesheet" href="assets/boxicons/css/boxicons.min.css" />
<!-- icon -->
<link rel="icon" href="assets/images/timer-icon.ico" />
<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>Timer</title>
</head>
<body>
<!-- container START-->
<div class="container">
<!-- navigation -->
<nav>
<a href="index.html" class="currentPage">timer</a>
<a href="assets/html/stopwatch.html">stopwatch</a>
</nav>
<!-- status section END -->
<!-- timer section START -->
<section id="timer-section">
<div id="background-circle">
<div id="timer">
<input
type="number"
id="hours"
placeholder="00"
class="inputs"
/>
<span>:</span>
<input
id="minutes"
type="number"
placeholder="00"
class="inputs"
/>
<span>:</span>
<input
id="seconds"
type="number"
placeholder="00"
class="inputs"
/>
</div>
</div>
</section>
<!-- timer section END-->
<!-- control section START -->
<section id="control-section">
<div id="control-button">
<i id="start" class="bx bx-play"></i>
<i id="restart" class="hide bx bx-reset"></i>
<i class="bx bx-pause hide" id="pause"></i>
</div>
</section>
</div>
<!-- container END -->
<!-- control section END -->
<!-- audio START -->
<audio src="assets/audio/alarm.mp3" id="alarm"></audio>
<!-- audio END -->
<!-- js link -->
<script defer src="assets/js/timer.js"></script>
</body>
</html>