-
Notifications
You must be signed in to change notification settings - Fork 0
/
clock.html
74 lines (74 loc) ยท 2.07 KB
/
clock.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- ๋ฐ์ํ ์น์ ์ ์ฉํ๊ธฐ ์ํด ๋ฐ๋์ ํ์ํ meta viewport ์ค์ -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>timeqlife - StopWatch</title>
<link href="style.css" rel="stylesheet" />
<script
src="https://kit.fontawesome.com/8351000410.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<nav role="navigation">
<ul id="main-menu">
<li>
<i class="fas fa-solid fa-bars"></i>
<ul id="sub-menu">
<li>
<a href="./index.html" aria-label="subemnu">Online Stopwatch</a>
</li>
</ul>
</li>
</ul>
</nav>
<h2>Online Clock</h2>
<div id="setting">
<i class="fas fa-solid fa-gear"></i>
</div>
</header>
<div class="container" align="center">
<div class="modal">
<div class="modal_body">
<div class="setting_name">SETTING</div>
<div class="check3" style="display: flex">
<label style="font-size: 17px">Dark Mode</label>
<input
type="checkbox"
id="darkmode"
style="zoom: 1.5; margin-left: auto"
/>
</div>
<div class="close">
<button
id="close_modal_btn"
style="
height: 35px;
width: 90%;
background-color: #b5cdb5;
font-weight: 400;
"
>
CLOSE
</button>
</div>
</div>
</div>
<div id="stopwatch_main">
<div id="current_time"></div>
</div>
<div id="lap_record"></div>
<div class="tools"></div>
</div>
<footer>
<div id="footer_content">
<span>timeqlife ยฉ2023</span>
</div>
</footer>
<script type="text/javascript" src="time.js"></script>
<script type="text/javascript" src="modal.js"></script>
</body>
</html>