-
Notifications
You must be signed in to change notification settings - Fork 0
/
timer.html
65 lines (55 loc) · 2.2 KB
/
timer.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
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
<!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>Countdown Timer</title>
<link rel="stylesheet" href="timer.css">
<link rel="stylesheet" href="./fontawesome-free-5.15.4-web/css/all.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="openmenu"><i class="fa fa-bars"></i></div>
<ul class="mainmenu">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="timer.html" class="nav-link">Timer</a></li>
<li><a href="stop.html" class="nav-link">Stop Watch</a></li>
<div class="closemenu"><i class="fa fa-times"></i></div>
</ul>
</nav>
</header>
<section class="overlay">
<div class="layer">
<h1>Countdown Timer</h1>
<div class="timer">
<div class="input-items">
<input type="number" id="hour" min="0" max="24" placeholder="hrs" autocomplete="off" value="" /> :
<input type="number" id="minute" min="0" max="59" placeholder="mins" autocomplete="off" value="" />
:
<input type="number" id="second" min="0" max="59" placeholder="secs" autocomplete="off" value="" />
</div>
<div id="disp">
<p>Timer</p>
</div>
<div class="btn">
<button id="start">Start</button>
<button id="stop">Stop</button>
<button id="reset">Reset</button>
</div>
</div>
</div>
<audio id="song" src="Puta Rara Puta - Mexicana.mp3" loop></audio>
<div class="clock">
<img src="gallery/clock3.png" alt="Clock">
</div>
</section>
<script src="timer.js"></script>
<div class="word">
<div class="one"><p>Live</p></div>
<div class="two"><p>the</p></div>
<div class="three"><p>Moment.</p></div>
</div>
</body>
</html>