Skip to content

Commit 3c47cfe

Browse files
Merge pull request #769 from ARVINDH-CT06/patch-14
Update index.html
2 parents aaf558e + 6b50b56 commit 3c47cfe

File tree

1 file changed

+26
-32
lines changed

1 file changed

+26
-32
lines changed

Clock-Stopwatch/index.html

Lines changed: 26 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,29 @@
11
<!DOCTYPE html>
2-
<html>
3-
<head>
4-
<title>
5-
Simple Stopwatch
6-
</title>
7-
<link href="./assests/styles.css" rel="stylesheet">
8-
<link
9-
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;900&display=swap"
10-
rel="stylesheet"
11-
/>
12-
<link
13-
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;1,300&display=swap"
14-
rel="stylesheet"
15-
/>
16-
17-
</head>
18-
<body>
19-
<div id="stopwatch">
20-
<!-- CURRENT TIME -->
21-
<h1> STOPWATCH</h1>
22-
<div class="circle">
23-
<span class="time" id="sw-time">00:00:00</span>
24-
</div>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Simple Stopwatch</title>
7+
8+
<!-- Stylesheet Links -->
9+
<link href="./assets/styles.css" rel="stylesheet">
10+
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;900&display=swap" rel="stylesheet">
11+
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;1,300&display=swap" rel="stylesheet">
12+
</head>
13+
<body>
14+
<main id="stopwatch">
15+
<h1>STOPWATCH</h1>
16+
<div class="circle">
17+
<span class="time" id="sw-time">00:00:00</span>
18+
</div>
19+
20+
<!-- Controls -->
21+
<div class="controls">
22+
<button id="sw-rst" disabled>Reset</button>
23+
<button id="sw-go" disabled>Start</button>
24+
</div>
25+
</main>
2526

26-
<!-- CONTROLS -->
27-
<div class="controls">
28-
<input type="button" value="Reset" id="sw-rst" disabled/>
29-
<input type="button" value="Start" id="sw-go" disabled/>
30-
</div>
31-
</div>
32-
<script src="./assests/scripts.js"></script>
33-
</body>
27+
<script src="./assets/scripts.js"></script>
28+
</body>
3429
</html>
35-

0 commit comments

Comments
 (0)