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>
<title>Happy Navratri</title>
<style>
body {
text-align: center;
background: linear-gradient(45deg, #ff5733, #ffcc33);
color: white;
font-family: Arial, sans-serif;
padding: 20px;
animation: bgChange 10s infinite alternate;
}
@keyframes bgChange {
0% { background: linear-gradient(45deg, #ff5733, #ffcc33); }
50% { background: linear-gradient(45deg, #ff0099, #ff6600); }
100% { background: linear-gradient(45deg, #ff5733, #ffcc33); }
}
.title {
font-size: 40px;
font-weight: bold;
margin-bottom: 20px;
text-shadow: 0px 0px 15px yellow;
}
.goddess-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
css
css
1
2
3
body {
}
js
js
1
BROWSER
Console
Run