-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·47 lines (47 loc) · 1.6 KB
/
index.html
File metadata and controls
executable file
·47 lines (47 loc) · 1.6 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
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2 in 1 Clock with Dark Mode</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/48bf809e58.js" crossorigin="anonymous"></script>
</head>
<body >
<div class="mainContainer" id="bd">
<div class="head">
<h2>2 in 1 Clock</h2>
<h5> ~For <a href="/Cnvas.html"><i>Cnvas Clock</i></a></h5>
</div>
<div class="cprt">
<h5><a href="https://t.me/WebDevChat">@WebDevChat (Telegram)</a></h5>
</div>
<div class="clock">
<div class="hour">
<div class="hr" id="hr"></div>
</div>
<div class="min">
<div class="mn" id="mn"></div>
</div>
<div class="sec">
<div class="sc" id="sc"></div>
</div>
<div class="num num1">I</div>
<div class="num num2">I</div>
<div class="num num3">I</div>
<div class="num num4">I</div>
</div>
<div class="digitalClock">
<div id="hour"></div>
<div id="min"></div>
<div id="sec"></div>
<div id="ampm"></div>
</div>
<div class="toggle">
<button id="tgbtn" onclick="toggle()"><i class="fas fa-circle"></i> Light Mode</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>