-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.07 KB
/
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
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="This is stopwatch web application was created using vanilla javaScript"
/>
<title>Stopwatch</title>
<link rel="stylesheet" href="style.css" />
<!-- fontawesome cdn -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body class="">
<div class="stopwatch">
<h1 id="displayTime">00:00:00</h1>
<div class="buttons">
<i class="fa-solid fa-stop" onclick="watchStop()"></i>
<i class="fa-solid fa-play" onclick="watchStart()"></i>
<i class="fa-solid fa-rotate-right" onclick="watchReset()"></i>
</div>
</div>
<script src="/app.js"></script>
</body>
</html>