-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 823 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (23 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stopwatch</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="timer">
<h1 id="time">00 : 00 : 00</h1>
</div>
<div class="switches">
<button id="btn" onclick="reset()"><i class="fa-solid fa-stopwatch"></i></button>
<button id="btn" onclick="start()"><i class="fa-solid fa-play"></i></button>
<button id="btn" onclick="stop()"><i class="fa-solid fa-stop"></i></button>
</div>
</div>
<script src="https://kit.fontawesome.com/9c6b207375.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>