-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 3.17 KB
/
Copy pathindex.html
File metadata and controls
64 lines (64 loc) · 3.17 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Christmas Message</title>
<style>
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(45deg, #0f4c3a, #1e6b52);
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
.message {
font-size: 3rem;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from { text-shadow: 0 0 20px #ff6b6b, 0 0 30px #ff6b6b, 0 0 40px #ff6b6b; }
to { text-shadow: 0 0 10px #4ecdc4, 0 0 20px #4ecdc4, 0 0 30px #4ecdc4; }
}
</style>
</head>
<body>
<!-- -->
<!-- -->
<!-- 🎄 CHRISTMAS TREE 🎄 -->
<!-- ⭐ -->
<!-- /|\ -->
<!-- /*|O\ -->
<!-- /*/|\*\ -->
<!-- /X/O|*\X\ -->
<!-- /*/X/|\X\*\ -->
<!-- /O/*/X|*\O\X\ -->
<!-- /*/O/X/|\X\O\*\ -->
<!-- /X/O/*/X|*\X\*\O\ -->
<!-- /O/X/*/O/|\O\*\X\O\ -->
<!-- |X| -->
<!-- |X| -->
<!-- _|_|_ -->
<!-- [_____] -->
<!-- -->
<!-- 🎅 MERRY CHRISTMAS AND HAPPY NEW YEAR 🎅 -->
<!-- FOR ALL EXPERTS! 🎁 -->
<!-- -->
<!-- May your code compile without errors this holiday season! -->
<!-- And may your bugs be as rare as snow in July! -->
<!-- -->
<!-- 🎄🎁🔔🎄🎁🔔🎄 -->
<!-- Ho Ho Ho! Debug responsibly! -->
<!-- 🎄🎁🔔🎄🎁🔔🎄 -->
<!-- -->
<div class="message">
Merry Christmas Loosers :D - Experts see more...
</div>
</body>
</html>