glitch-countdown/dist/index.html

49 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2023-10-29 21:18:28 +00:00
<!DOCTYPE html>
<html>
2023-10-29 22:24:20 +00:00
<head>
<title>Glitch Countdown</title>
<script src="main.js"></script>
<link rel="stylesheet" href="main.css">
</head>
<body>
<header>
2023-10-30 13:00:48 +00:00
<h2 data-text="glitch">glitch</h2><h1>Countdown</h1>
2023-10-29 22:24:20 +00:00
</header>
<nav></nav>
<section>
<div id="countdown">
<div id="days" class="part">
2023-10-29 22:58:26 +00:00
<span class="up">&Lang;</span>
2023-10-30 12:39:00 +00:00
<input type="text" value="000">
2023-10-29 22:58:26 +00:00
<span class="down">&Rang;</span>
2023-10-29 22:24:20 +00:00
</div>
2023-10-30 12:39:00 +00:00
<span class="separator">:</span>
2023-10-29 22:24:20 +00:00
<div id="hours" class="part">
2023-10-29 22:58:26 +00:00
<span class="up">&Lang;</span>
2023-10-30 12:39:00 +00:00
<input type="text" value="00">
2023-10-29 22:58:26 +00:00
<span class="down">&Rang;</span>
2023-10-30 12:39:00 +00:00
</div>
<span class="separator">:</span>
2023-10-29 22:24:20 +00:00
<div id="minutes" class="part">
2023-10-29 22:58:26 +00:00
<span class="up">&Lang;</span>
2023-10-30 12:39:00 +00:00
<input type="text" value="00">
2023-10-29 22:58:26 +00:00
<span class="down">&Rang;</span>
2023-10-30 12:39:00 +00:00
</div>
<span class="separator">:</span>
2023-10-29 22:24:20 +00:00
<div id="seconds" class="part">
2023-10-29 22:58:26 +00:00
<span class="up">&Lang;</span>
2023-10-30 12:39:00 +00:00
<input type="text" value="00">
2023-10-29 22:58:26 +00:00
<span class="down">&Rang;</span>
2023-10-29 22:24:20 +00:00
</div>
2023-10-30 12:39:00 +00:00
<button id="start">
<span>start</span>
<span aria-hidden="true" class="layer">start</span>
<span aria-hidden="true" class="layer">start</span>
</button>
2023-10-29 22:24:20 +00:00
</div>
</section>
</body>
</html>