mirror of
https://github.com/sigmasternchen/glitch-countdown
synced 2025-03-15 18:38:54 +00:00
33 lines
No EOL
604 B
HTML
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> |