html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div></div>
</body>
</html>
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
div {
width:200px;
height:150px;
background-color:magenta;
-webkit-animation:first 2s .5s infinite alternate;
}
@-webkit-keyframes first {
0% {
background-color:magenta;
}
20%{
background-color:coral;
}
40%{
background-color:red;
}
60%{
background-color:blue;
}
80%{
background-color:pink;
}
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
alert ("My first CSS animation !!!");
alert ("Please upvote if you like the code 👍👍👍")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run