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
<!-- This SVG animation was made by me, Karak10, if you like it don't forget to like it, your support helps a lot -->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body bgcolor="black">
<p>
<svg width="350" height="300" viewBox="-195 -110 400 200">
<!-- Circle's fill color below -->
<defs>
<linearGradient id="color">
<stop offset="0%" stop-color="red" />
<stop offset="45%" stop-color="pink" />
<stop offset="49%" stop-color="pink"/>
<stop offset="51%" stop-color="cyan"/>
<stop offset="55%" stop-color="cyan""/>
<stop offset="100%" stop-color="blue"/>
</linearGradient>
</defs>
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