Files
RocketLaunchCountdownRewrite/countdown.html
SpaceNerd0717 6a5f069255 Init build
2025-10-15 01:06:18 -04:00

27 lines
544 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
background-color: black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
font-family: Consolas, monospace;
}
#mission { font-size: 4vw; margin-bottom: 0; }
#timer { font-size: 8vw; margin-bottom: 40px; }
</style>
<script>
setTimeout(() => location.reload(), 1000);
</script>
</head>
<body>
<div id="mission">Placeholder Mission</div>
<div id="timer">T-00:00:00</div>
</body>
</html>