-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (22 loc) · 853 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Festive Surprise</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="snow-container"></div>
<div id="christmas-countdown" class="countdown"></div>
<div id="name-form">
<input type="text" id="name-input" placeholder="Enter your name">
<button id="submit-button">Submit</button>
</div>
<div class="greeting" id="greeting" style="display: none;">Merry Christmas!</div>
<img src="jumpscare/scary-grinch.png" id="grinch-image" style="display: none;">
<audio id="grinch-sound" src="jumpscare/scream.mp3"></audio>
<audio id="thump-sound" src="jumpscare/thump.mp3"></audio>
<script src="script.js"></script>
</body>
</html>