glitch-countdown/dist/index.html
2023-10-30 13:39:00 +01:00

49 lines
No EOL
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Glitch Countdown</title>
<script src="main.js"></script>
<link rel="stylesheet" href="main.css">
</head>
<body>
<header>
<h1>Glitch Countdown</h1>
</header>
<nav></nav>
<section>
<div id="countdown">
<div id="days" class="part">
<span class="up">&Lang;</span>
<input type="text" value="000">
<span class="down">&Rang;</span>
</div>
<span class="separator">:</span>
<div id="hours" class="part">
<span class="up">&Lang;</span>
<input type="text" value="00">
<span class="down">&Rang;</span>
</div>
<span class="separator">:</span>
<div id="minutes" class="part">
<span class="up">&Lang;</span>
<input type="text" value="00">
<span class="down">&Rang;</span>
</div>
<span class="separator">:</span>
<div id="seconds" class="part">
<span class="up">&Lang;</span>
<input type="text" value="00">
<span class="down">&Rang;</span>
</div>
<button id="start">
<span>start</span>
<span aria-hidden="true" class="layer">start</span>
<span aria-hidden="true" class="layer">start</span>
</button>
</div>
</section>
</body>
</html>