html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div><br>hi</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
@keyframes main {
0% {top: 10px; left:10px;}
25% {top: 110px;}
50% {left:110px;}
75% {top:10px;}
100% {left:10px;}
}
div {
position:relative ;
top:10px;
left:10px;
animation-name:main;
animation-duration:8s;
animation-iteration-count:infinite;
background-color:red;
width:50px;
height:50px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run