html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<body>
<div class="moon"></div>
<h1>Happy Ramadan</h1>
<div class="message">
Wishing you a <span class="highlight">holy month</span> filled with
<span class="highlight">full sabar</span>, A sincere Muslim, with a heart
<span class="highlight">full of love for Allah.</span>, endless
<span class="highlight">positivity</span>, and
<span class="highlight">bug-free coding</span>!
</div>
<div class="stars">
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
</div>
</body>
Enter to Rename, Shift+Enter to Preview
css
css
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: linear-gradient(45deg, #0f2453, #2a4066, #4a8a9c);
position: relative;
overflow: hidden;
padding: 20px;
}
.moon {
position: relative;
width: 150px;
height: 150px;
background: radial-gradient(circle at 70% 70%, #ffd700 20%, #ffaa00 60%);
border-radius: 50%;
margin-bottom: 30px;
animation: pulse 3s infinite;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Uruchom