-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstopwatch.html
More file actions
37 lines (36 loc) · 1.22 KB
/
stopwatch.html
File metadata and controls
37 lines (36 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Lobster&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./stopwatch_style.css" />
<title>Stopwatch by Awang Praja Anugerah</title>
</head>
<body>
<div class="main_app">
<div class="app_info">
<span class="app_title">Stopwatch Timer</span>
<span class="app_creator">by Awang Praja Anugerah</span>
</div>
<div class="stopwatch_timer">
<span class="minutes">00</span> : <span class="second">00</span> :
<span class="milisecond">00</span>
</div>
<div class="stopwatch_btn">
<button class="btn start_btn">Start</button>
<button class="btn stop_btn">Stop</button>
<button class="btn reset_btn">Reset</button>
</div>
</div>
</body>
<script src="./stopwatch_script.js"></script>
</html>