-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.html
32 lines (27 loc) · 1.05 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timer</title>
<link rel="stylesheet" href="timer.css">
<link rel="icon" type="image/x-icon" href="timer.png">
</head>
<body>
<div class="box">
<div id="disp">Timer</div>
<form action="#" id="display">
<input type="number" id="hour" placeholder="HOUR" autocomplete="off" value="">
<input type="number" id="minute" placeholder="MINUTES" autocomplete="off" value="">
<input type="number" id="second" placeholder="SECONDS" autocomplete="off" value="">
</form>
<div class="btn">
<button class="bttn" id="start">START</button>
<!-- <button onclick="stop()" class="bttn" id="stop">STOP</button> -->
<button class="bttn" id="reset">RESET</button>
<button class="bttn" id="home"><a href="index.html">HOME</a></button>
</div>
</div>
<script src="./timer.js"></script>
</body>
</html>