-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 852 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href = "clock.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/33c6f35101.js" crossorigin="anonymous"></script>
<title>Digital clock!</title>
</head>
<body>
<h1>Toggle dark mode!</h1>
<span id="toggle-switch" title="Toggle Dark ">
<i class="fas fa-moon" id="toggle-switch"></i>
</span>
<div id="showClock" class="clock-design" onload="displayTime()">
</div>
<script src ="clock.js"></script>
<script src ="theme.js"></script
</body>
</html>