html
html
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<svg> <rect width="80" height="80"> <animate attributeName="fill" values="red;green;blue;orange;yellow;purple" dur="5s" repeatCount="indefinite" /> </rect> </svg>
<svg> <circle cx="56px" cy="36px" r="36px"> <animate attributeName="fill" values="orange;yellow;purple;red;green;blue" dur="5s" repeatCount="indefinite" /> </circle> </svg>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run