glitch-countdown/dist/index.html
2023-10-29 23:58:26 +01:00

41 lines
No EOL
890 B
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="0">
<span class="down">&Rang;</span>
</div>
<div id="hours" class="part">
<span class="up">&Lang;</span>
<input type="text" value="0">
<span class="down">&Rang;</span>
</div> :
<div id="minutes" class="part">
<span class="up">&Lang;</span>
<input type="text" value="0">
<span class="down">&Rang;</span>
</div> :
<div id="seconds" class="part">
<span class="up">&Lang;</span>
<input type="text" value="0">
<span class="down">&Rang;</span>
</div>
</div>
</section>
</body>
</html>