a6b3f039d8
Pages: /, /simple, /decimal, /seth, /calendar, /astro, /convert, /timegov Features: Seth Calendar (10×36 + holidays), decimal time, moon phases, astronomy (sun/moon), bidirectional time converter, Seth date display, leap day split cell in calendar grid.
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Sethflix Official Time</title>
|
|
<link rel="icon" type="image/png" href="https://storage.googleapis.com/sethfreiberg.com/sethflix/favicon.png">
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<main class="wrap">
|
|
<div class="brand-row">
|
|
<img class="logo-img" src="https://storage.googleapis.com/sethfreiberg.com/sethflix/favicon.png" alt="Sethflix logo">
|
|
<span class="brand-text">SethPC Time</span>
|
|
</div>
|
|
<p class="kicker">Official U.S. Time</p>
|
|
<h1 id="dateLine">Loading date...</h1>
|
|
<p id="digital" class="digital">--:--:--.--</p>
|
|
|
|
<div class="controls">
|
|
<label class="zone-picker" for="zoneSelect">Display Time Zone</label>
|
|
<select id="zoneSelect"></select>
|
|
</div>
|
|
|
|
<div class="meta-grid">
|
|
<p><strong>Time Zone:</strong> <span id="zoneLabel">-</span></p>
|
|
<p><strong>Status:</strong> <span id="offsetLabel">calibrating...</span></p>
|
|
<p><strong>UTC:</strong> <span id="utcLabel">-</span></p>
|
|
<p><strong>Source:</strong> Hosted by SethPC</p>
|
|
</div>
|
|
</main>
|
|
<script src="/app.js"></script>
|
|
</body>
|
|
</html>
|