30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Server Time Display</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<h1>Current Time</h1>
|
|
<div class="status-box">
|
|
<div class="status-label">Local Computer Clock Offset</div>
|
|
<div id="offset-display" class="status-value">--</div>
|
|
</div>
|
|
</header>
|
|
<div class="time-container">
|
|
<div id="time-display" class="time">--:--:--</div>
|
|
<div id="utc-display" class="time utc">--:--:--</div>
|
|
<div id="timezone-display" class="timezone">--</div>
|
|
</div>
|
|
<footer class="footer">
|
|
<a href="https://git.eeqj.de/sneak/timepage" target="_blank">Project Page</a>
|
|
</footer>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |