-
Notifications
You must be signed in to change notification settings - Fork 0
/
time.html
96 lines (91 loc) · 3.78 KB
/
time.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/style.css">
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<title>DragonsRule10</title>
<link rel="preload" as="image" href="/assets/btn-minecraft-hover.png">
<link rel="preload" as="image" href="/assets/btn-panorama-hover.png">
<link href="/assets/CommissionThingyDone.png" rel="shortcut icon" type="image/x-icon">
<meta property="og:title" content="DragonsRule10 | Developer">
<meta property="og:description" content="'Hey there, I'm Tristin, also known as Dragon (DragonsRule10) online, and I've been diving into the coding world since 2021. Coding has always been a significant part of my life, and I've had some cool experiences along the way.'">
<meta property="og:image" content="/CommissionThingyDone.png">
<meta property="og:url" content="https://dragonsrule10.com/index">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2EXD01SNMS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2EXD01SNMS');
</script>
<link rel="stylesheet" class="theme">
<div class="panorama-button pixelated" title="Toggle panorama movement" onclick="triggerPanoramaMovement();"></div>
<div class="backdrop-blur"></div>
<audio id="music">
<source src="/assets/menu2.ogg" type="audio/ogg">
</audio>
<audio id="musicHalloween">
<source src="/assets/halloween.ogg" type="audio/ogg">
</audio>
<audio id="musicFestive">
<source src="/assets/flake.ogg" type="audio/ogg">
</audio>
<audio id="musicAprilFools">
<source src="/assets/aprilfools.ogg" type="audio/ogg">
</audio>
<audio id="click">
<source src="/assets/audio/click.ogg" type="audio/ogg">
</audio>
<audio id="hover">
<source src="/assets/audio/hover.ogg" type="audio/ogg">
</audio>
<audio id="clickAprilFools">
<source src="/assets/aprilfools/click.ogg" type="audio/ogg">
</audio>
<div class="container">
<a href="/"><span class="logo"></span></a>
<div class="guibox center">
<img src="/assets/CommissionThingyDone.png" class="w3-round center" alt="Made by @reddivalentine on Discord!" style="width:50%">
</div>
<div class="guibox center">
<div class="button-list">
Monday, Tuesday, Thursday, Friday | 3:15pm - 8:15pm
Wednesdays | Available mostly all day.
Saturday | Available mostly all day.
Sunday | 11:00am - ~2:00pm. (Varies)
<!--<p>Currently available <em>most</em> of the time. For temporary unavailability notices, join my <a href="https://ds.dragonsrule10.com/joindiscord.html">Discord Server.</a></p>-->
<p><em>"What time is it for me right now?</em></p>
<div id="cdt-time"></div>
<script>
function updateCDTTime() {
const currentTime = new Date();
const options = {
timeZone: 'America/Chicago',
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
hour12: true,
};
const cdtTime = currentTime.toLocaleString('en-US', options);
document.getElementById('cdt-time').textContent = cdtTime;
}
setInterval(updateCDTTime, 1000);
updateCDTTime();
</script>
<a class="minecraft-button center" href="/index.html">Back</a>
</div>
</div>
</div>
<div class="container">
<div class="guibox center" style="font-size: 0.90em;">
Website resources belong to <a href="https://www.legacyminigames.net/">LEM</a><br>
NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.
</div>
</div>
</body>
<script src="/script.js"></script>
</html>