-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.63 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.63 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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@300&family=Jost:wght@500&family=Nunito:wght@500&family=Prompt:wght@500&family=Roboto+Slab:wght@700&family=Sofia+Sans:wght@500&display=swap" rel="stylesheet">
<title>Countdown Timer</title>
</head>
<body>
<div id="container">
<div class="tit"><h1>Countdown Timer</h1></div>
<div class="top">
<div class="h">
<input id="hour" type="number" max="99" min="0" value="0" class="time">
<p id="hour-label" class="label">Hours</p>
</div>
<div class="m">
<input id="minute" type="number" max="60" min="0" value="0" class="time">
<p id="min-label" class="label">Minutes</p>
</div>
<div class="s">
<input id="sec" type="number" max="60" min="0" value="0" class="time">
<p id="sec-label" class="label">Seconds</p>
</div>
</div>
</div>
<div class="bottom">
<button id="start" class="btn">Start</button>
<button id="reset" class="btn">Reset</button>
</div>
<script data-two_delay_id="two_65a955e68d516" data-two_delay_src="main.js"></script>
</body>
</html>