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