-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path100-projects-011-countdown-timer1.html
More file actions
31 lines (26 loc) · 1.1 KB
/
100-projects-011-countdown-timer1.html
File metadata and controls
31 lines (26 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Countdown Timer</title>
<link rel="stylesheet" href="100-projects-011-countdown-timer1.css">
</head>
<body>
<div class="page-wrapper">
<div class="container">
<h2>Customer Countdown Timer</h2>
<form id="timerForm">
<label for="hours">Hours:</label><br>
<input type="number" id="hours" name="hours" min="0" value="0"><br>
<label for="minutes">Minutes:</label><br>
<input type="number" id="minutes" name="minutes" min="0" max="59" value="0"><br>
<label for="seconds">Seconds:</label><br>
<input type="number" id="seconds" name="seconds" min="0" max="59" value="0"><br>
<input type="button" value="Start Countdown" onclick="startCountdown()">
</form>
<p id="countdown"></p>
</div>
</div>
<script src="100-projects-011-countdown-timer1.js"></script>
</body>
</html>