2024-08-10 10:54:50 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
<title>Year of the Linux Desktop Countdown</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2024-08-10 10:55:12 -05:00
|
|
|
<h1>The year of the Linux desktop is among us!</h1>
|
2024-08-10 10:54:50 -05:00
|
|
|
</header>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
<div id="countdown">
|
|
|
|
<div id="days" class="countdown-item">00</div>
|
|
|
|
<div class="countdown-label">Days</div>
|
|
|
|
|
|
|
|
<div id="hours" class="countdown-item">00</div>
|
|
|
|
<div class="countdown-label">Hours</div>
|
|
|
|
|
|
|
|
<div id="minutes" class="countdown-item">00</div>
|
|
|
|
<div class="countdown-label">Minutes</div>
|
|
|
|
|
|
|
|
<div id="seconds" class="countdown-item">00</div>
|
|
|
|
<div class="countdown-label">Seconds</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<script src="countdown.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|