-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtimer.html
More file actions
28 lines (24 loc) · 976 Bytes
/
Copy pathtimer.html
File metadata and controls
28 lines (24 loc) · 976 Bytes
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
!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timer</title>
<link rel="stylesheet" href="timer.css" type="text/css">
</head>
<body>
<h1 class="set">Timer</h1>
<div class="countdown">
<div id="countdown-hour">00</div>
<div id="countdown-min">00</div>
<div id="countdown-sec">00</div>
</div>
<div class="buttons">
<div><button onclick="startfunction()" type="button" class="onclick_button" id="start-btn">Start</button></div>
<div><button onclick="pausefunction()" type="button" class="onclick_button" id="pause-btn">Pause</button></div>
<div><button onclick="resetfunction()" type="button" class="onclick_button" id="reset-btn">Reset</button></div>
</div>
<script src="timer.js"></script>
</body>
</html>