-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStopWatch.html
More file actions
27 lines (27 loc) · 836 Bytes
/
StopWatch.html
File metadata and controls
27 lines (27 loc) · 836 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
<!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="sw.css">
</head>
<body>
<div class="time">
<h1>StopWatch-Timmer!</h1>
<p>This helps you calculate the time.</p>
</div>
<div class="timer-box">
<p>Hours:<span id="hours">00</span>  
Minutes:<span id="Minutes">00</span>  
Seconds:<span id="Seconds">00</span>  
</p>
</div>
<div>
<button class="btn" id="startBtn">Start</button>  
<button class="btn" id="stopBtn">Stop</button>  
<button class="btn" id="resetBtn">Reset</button>  
</div>
<script src="SW.js"></script>
</body>
</html>