-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathindex.html
29 lines (26 loc) · 945 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<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>
<script src="./assets/scripts.js"></script>
</body>
</html>