-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstopWatch.html
More file actions
22 lines (22 loc) · 825 Bytes
/
stopWatch.html
File metadata and controls
22 lines (22 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>stopWatch</title>
<link rel="stylesheet" href="stopwatch.css">
</head>
<body>
<div class="box">
<h2 class="heading">STOPWATCH
</h2>
<h1 id="stopwatch"> 00:00:00</h1>
<button onclick="start()" style="background-color: green;">start</button>
<button onclick="stop()" style="background-color: red;">stop</button>
<button onclick="reset()" style="background-color: blue;">reset</button>
<button onclick="resume()" style="background-color: rgb(247, 105, 10);">resume</button>
<button style="background-color: palevioletred;">laps</button>
</div>
<script src="stopWatch.js"></script>
</body>
</html>