-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Countdown Timer</title>
</head>
<body>
<h1>COUNTDOWN TIMER</h1>
<div id="container">
<p id="hour-label" class="label">Hours</p>
<p id="min-label" class="label">Minutes</p>
<p id="sec-label" class="label">Seconds</p>
<input id="hour" type="number" max="99" min="0" value="0" class="time">
<p id="p1" class="semicolon">:</p>
<input id="minute" type="number" max="60" min="0" value="0" class="time">
<p id="p2" class="semicolon">:</p>
<input id="sec" type="number" max="60" min="0" value="0" class="time">
<button id="start" class="btn">Start</button>
<button id="reset" class="btn">Reset</button>
</div>
<script src="main.js"></script>
</body>
</html>