-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.09 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
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<header>
<title>Time Zone</title>
<meta name="description" content="Get your local time zone.">
<link rel="shortcut icon" href="clock.ico" type="image/x-icon"/>
<meta property="og:url" content="https://tz.astrea.cc/">
<meta property="og:type" content="website">
<meta property="og:title" content="Time Zone">
<meta property="og:description" content="Get your local time zone.">
<meta property="og:image" content="https://tz.astrea.cc/clock.png">
</header>
<head>
<style>
body {
font-family: tahoma, sans-serif;
text-align: center;
font-size: 70px;
}
#extra {
font-family: tahoma, sans-serif;
text-align: center;
font-size: 30px;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #121212;
color: #ffffff;
}
}
</style>
</head>
<body>
<p id="timezone">Your time zone is: N/A</p>
<div id="extra">
<p id="fullname">Full name: N/A</p>
<p id="iananame">IANA name: N/A</p>
</div>
<script type="text/javascript" src="timezone.js"></script>
</body>
</html>