Skip to content

Commit 9da8e0c

Browse files
committed
Add buttons
1 parent 4eb60d8 commit 9da8e0c

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

Source-Code/StopWatch/index.html

+17-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Document</title>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Stop watch</title>
7+
<link rel="stylesheet" href="style.css">
78
</head>
89
<body>
9-
10+
<div class="container">
11+
<h1>Stopwatch</h1>
12+
<div class="stopwatch">
13+
<span id="minutes">00</span>:<span id="seconds">00</span>:<span id="milliseconds">00</span>
14+
</div>
15+
<div class="buttons">
16+
<button id="start">Start</button>
17+
<button id="stop">Stop</button>
18+
<button id="reset">Reset</button>
19+
</div>
20+
</div>
21+
<script src="script.js"></script>
1022
</body>
11-
</html>
23+
</html>

0 commit comments

Comments
 (0)