forked from ayoola-gabriel/Countdown-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Countdown Timer.html
62 lines (56 loc) · 2.24 KB
/
Countdown 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
<!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 App</title>
<link rel="stylesheet" type="text/css" href="./styles/main.css">
<script src="./scripts/app.js" defer></script>
</head>
<body>
<section class="main-container">
<section id="progress-bar" class="progress"></section>
<section class="logo">
<img src="./images/logo.png">
</section>
<section id="functions" class="functions">
<section id="set-time" class="set-time">
<input id="tth" name="hr" type="number" placeholder="HH">
<label>:</label>
<input id="ttm" name="mm" type="number" placeholder="MM">
<label>:</label>
<input id="tts" name="ss" type="number" placeholder="SS">
<!-- <button id="submit-time" class="btn">Submit</button> -->
<hr class="hr">
</section>
<section>
<!-- <button id="set-time-btn" class="btn">Set Time</button> -->
<button id="start-btn" class="btn">Start</button>
<button id="pause-btn" class="btn">Pause</button>
<button id="stop-btn" class="btn">Stop</button>
</section>
</section>
<section class="timer-container">
<div id="neg" class="timer">-</div>
<section class="hour">
<!-- <p class="super">H</p> -->
<p id="hr" class="timer">00</p>
</section>
<div class="divider">:</div>
<section class="minutes">
<!-- <p class="super">M</p> -->
<p id="min" class="timer">00</p>
</section>
<div class="divider">:</div>
<section class="seconds">
<!-- <p class="super">S</p> -->
<p id="secs" class="timer">00</p>
</section>
</section>
<section id="timeup">
<p class="timeup">TIME UP!</p>
</section>
</section>
</body>
</html>