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>
<title>heart</title>
</head>
<body>
<svg
Width="500px"
Height="500px">
<!-- click on shapes to animate -->
<circle id="my-circle"
cx="150px"
cy="150px"
r="50px"
fill="red"
/>
<circle id="my-circle2"
cx="220px"
cy="150px"
r="50px"
fill="red"
/>
<path id="traingle" d="M 103 168 L 185 300 L 267 168 Z"
style="fill:red;"
Enter to Rename, Shift+Enter to Preview
css
css
1
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run