Skip to content

Commit 1300d04

Browse files
committed
add segmantic tags
1 parent 9da8e0c commit 1300d04

File tree

1 file changed

+22
-19
lines changed

1 file changed

+22
-19
lines changed

Source-Code/StopWatch/index.html

+22-19
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
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">
8-
</head>
9-
<body>
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>
3+
<head>
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" />
8+
</head>
9+
<body>
10+
<div class="container">
11+
<h1>Stopwatch</h1>
12+
<div class="stopwatch">
13+
<span id="minutes">00</span>:<span id="seconds">00</span>:<span
14+
id="milliseconds"
15+
>00</span
16+
>
17+
</div>
18+
<div class="buttons">
19+
<button id="start">Start</button>
20+
<button id="stop">Stop</button>
21+
<button id="reset">Reset</button>
22+
</div>
1423
</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>
22-
</body>
24+
<script src="script.js"></script>
25+
</body>
2326
</html>

0 commit comments

Comments
 (0)