-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.66 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.66 KB
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
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description"
content="Keep track of time accurately with this simple JavaScript Stopwatch application, perfect for timing events." />
<meta name="keywords" content="stopwatch, JavaScript stopwatch, timing app, basic timer project, time tracking" />
<meta property="og:title" content="Stopwatch" />
<meta property="og:description"
content="Keep track of time accurately with this simple JavaScript Stopwatch application, perfect for timing events." />
<meta property="og:image" content="https://coderespite.com/image/js-projects/simple-stopwatch.png" />
<meta property="og:url" content="https://coderespite.com/projects/js-projects/simple-stopwatch" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Stopwatch" />
<meta name="twitter:description"
content="Keep track of time accurately with this simple JavaScript Stopwatch application, perfect for timing events." />
<meta name="twitter:image" content="https://coderespite.com/image/js-projects/simple-stopwatch.png" />
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>simple-stopwatch</title>
</head>
<body>
<main class="container">
<h1 id="title">Simple Stopwatch</h1>
<h2 id="timerReading">00:00:00</h2>
<div class="buttons">
<button id="start">Start</button>
<button id="stop">Stop</button>
<button id="reset">Reset</button>
</div>
</main>
<script src="script.js"></script>
</body>
</html>