Files
jamclock/index.html
T
2026-06-26 20:39:52 -04:00

25 lines
678 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>jamclock</title>
</head>
<body>
<main>
<div class="label-container">
<div id="pre-jam">Time until writing jam</div>
<div id="post-jam">Writing jam ober :c</div>
<div id="during-jam">Writing time remaining</div>
</div>
<div class="time-container">
<time id="curr-time"></time>
</div>
</main>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>