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
<html>
<head>
<title>TRANSPARENT COLORS</title>
<style>
body
{
animation:colorchange 5s linear 1s infinite alternate;
background-color:skyblue;
}
@keyframes colorchange
{
from{background-color:skyblue;}
to{background-color:red;}
}
h4
{
text-align:center;
background-color:skyblue;
border-radius:5px;
}
p
{
text-align:center;
border-radius:5px;
}
Enter to Rename, Shift+Enter to Preview
css
css
1
Enter to Rename, Shift+Enter to Preview
js
js
1
2
alert("💝 Hope you all like it 💝")
alert("☺️☺️ Have a nice day ahead ☺️☺️")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run