-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 728 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (21 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="manifest" href="manifest.webmanifest" />
<link rel="stylesheet" href="style.css" />
<title>Clock</title>
<link rel="icon" href="assets/icon.png" type="image/png" />
<link rel="apple-touch-icon" href="assets/icon-flat.png" />
</head>
<meta name="color-scheme" content="light dark" />
<body id="theme-container">
<div id="clockContainer">
<div id="dial"></div>
<div id="center"></div>
<div id="hour"><div id="hour-clippable"></div></div>
<div id="minute"><div id="minute-clippable"></div></div>
<div id="second"><div id="second-clippable"></div></div>
</div>
</body>
<script src="script.js"></script>
</html>