mirror of
https://github.com/jlengrand/is-it-christmas.git
synced 2026-03-10 08:21:24 +00:00
23 lines
698 B
HTML
23 lines
698 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Is it Christmas? Find out if today is December 25th with a simple yes or no answer.">
|
|
<title>Is It Christmas?</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<main id="app">
|
|
<div id="loading">Checking date...</div>
|
|
<div id="content" style="display: none;">
|
|
<!-- Content will be dynamically inserted by JavaScript -->
|
|
</div>
|
|
</main>
|
|
|
|
<canvas id="snowCanvas" style="display: none;"></canvas>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|