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

33 lines
No EOL
604 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">
<input type="text" value="0">
</div>
<div id="hours" class="part">
<input type="text" value="0"> :
</div>
<div id="minutes" class="part">
<input type="text" value="0"> :
</div>
<div id="seconds" class="part">
<input type="text" value="0">
</div>
</div>
</section>
</body>
</html>