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
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eid Mubarak</title>
<link href="https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@300;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
overflow: hidden;
background: linear-gradient(to bottom, #0d1b2a, #1b263b, #415a77);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: white;
text-align: center;
font-family: 'Poppins', sans-serif;
position: relative;
}
.moon {
width: 120px;
height: 120px;
background: radial-gradient(circle, #ffffcc, #ffdd99);
border-radius: 50%;
box-shadow: 0 0 40px #ffffcc;
position: absolute;
css
css
1
2
3
body {
}
js
js
1
BROWSER
Console
Run