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
<!DOCTYPE HTML>
<html>
<head lang="en-US>
<meta charset="UTF-8">
<title> Colored Heart </title>
<link rel="stylesheet" href="HTMLnotes.css?version=1">
</head>
<body>
<p align="center"> <svg height="410" width="340" viewbox="0 0 400 450" preserveAspectRatio="xMidYMid meet">
<rect fill="black"width="400" height="450" x="0" y="0" stroke="black" stroke-width="15" >
<animate attributeName="stroke" values="#962C53;#00f;C5170C;#3ABCC2;#FE133C;#F89AE5;#289898;#9E13BB;#DD2EA5;#0ff" dur="4s" repeatCount="indefinite" fill="feeze"/>
<animate attributeName="stroke-dasharray" values="2 2;4 4;6 6;8 8;10 10" dur="3s" repeatCount="indefinite" fill="freeze"/>
</rect>
<path d="M100 300 C-110 90,100 10,200 110 C320 10,500 50, 300 300 C210 400, 210 400, 200 400 Z " fill="black" stroke="black" stroke-width="10" >
<animate attributeName="stroke" values="#962C53;#00f;C5170C;#3ABCC2;#FE133C;#F89AE5;#289898;#9E13BB;#DD2EA5;#0ff" dur="4s" repeatCount="indefinite" fill="feeze"/>
<animate attributeName="stroke-dasharray" values="2 2;4 4;6 6;8 8;10 10" dur="3s" repeatCount="indefinite" fill="freeze"/>
</path>
<text x="117" y="430" font-size="1em"> Colored Heart by Karak10
<animate attributeName="stroke" values="#962C53;#00f;C5170C;#3ABCC2;#FE133C;#F89AE5;#289898;#9E13BB;#DD2EA5;#0ff" dur="4s" repeatCount="indefinite" fill="feeze"/>
<animate attributeName="stroke-dasharray" values=".2 .2;.4 .4;.6 .6;.8 .8;1 1" dur="3s" repeatCount="indefinite" fill="freeze"/> </text>
</svg> </p>
</body>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
background-color: black;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run