-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.59 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A stylish digital clock displaying the current time in hours and minutes." />
<title>Clock</title>
<link rel="icon" type="image/svg+xml" href="/favicon-light.svg" media="(prefers-color-scheme: light)" />
<link rel="icon" type="image/svg+xml" href="/favicon-dark.svg" media="(prefers-color-scheme: dark)" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="mask-icon" href="/mask-icon.svg" color="#FFFFFF" />
<meta name="theme-color" content="#FFFFFF" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)" />
<link
href="https://fonts.googleapis.com/css2?family=Monoton&display=swap"
rel="preload"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript>
<link href="https://fonts.googleapis.com/css2?family=Monoton&display=swap" rel="stylesheet" />
</noscript>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body class="dark:bg-black dark:text-white">
<div
class="grid h-screen select-none place-content-center gap-14 text-center font-['Monoton'] text-[57vw] min-[553px]:gap-9 min-[566px]:text-[42.6vw] md:grid-flow-col md:gap-6 md:text-[25vw]"
>
<div class="leading-none" id="hours"></div>
<div class="hidden leading-none md:block" id="colon">:</div>
<div class="leading-none" id="minutes"></div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>