Skip to content

Commit

Permalink
Merge pull request #769 from ARVINDH-CT06/patch-14
Browse files Browse the repository at this point in the history
Update index.html
  • Loading branch information
Ayushparikh-code authored Oct 27, 2024
2 parents aaf558e + 6b50b56 commit 3c47cfe
Showing 1 changed file with 26 additions and 32 deletions.
58 changes: 26 additions & 32 deletions Clock-Stopwatch/index.html
Original file line number Diff line number Diff line change
@@ -1,35 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>
Simple Stopwatch
</title>
<link href="./assests/styles.css" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;1,300&display=swap"
rel="stylesheet"
/>

</head>
<body>
<div id="stopwatch">
<!-- CURRENT TIME -->
<h1> STOPWATCH</h1>
<div class="circle">
<span class="time" id="sw-time">00:00:00</span>
</div>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Stopwatch</title>

<!-- Stylesheet Links -->
<link href="./assets/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;1,300&display=swap" rel="stylesheet">
</head>
<body>
<main id="stopwatch">
<h1>STOPWATCH</h1>
<div class="circle">
<span class="time" id="sw-time">00:00:00</span>
</div>

<!-- Controls -->
<div class="controls">
<button id="sw-rst" disabled>Reset</button>
<button id="sw-go" disabled>Start</button>
</div>
</main>

<!-- CONTROLS -->
<div class="controls">
<input type="button" value="Reset" id="sw-rst" disabled/>
<input type="button" value="Start" id="sw-go" disabled/>
</div>
</div>
<script src="./assests/scripts.js"></script>
</body>
<script src="./assets/scripts.js"></script>
</body>
</html>

0 comments on commit 3c47cfe

Please sign in to comment.