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
29
30
31
32
33
34
35
36
37
38
39
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="1000" height="500" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<path d="M 10,30
A 20,20 0,0,1 50,30
A 20,20 0,0,1 90,30
Q 90,60 50,90
Q 10,60 10,30 Z" id="heart" fill="indigo" />
<path d="M 10 410
V 490
H 100 Z" id="bottom-left-corner" fill="firebrick" class="corner" />
<path d="M 910 410
H 990
V 490
H 910
L 910 410" id="square" fill="crimson" />
<path d="M 910 10
H 990
V 100 Z" id="top-right-corner" fill="deeppink" class="corner" />
<path d="M 300,200
h-150
a150,150 0 1,0 150,-150 Z" id="arc-big" fill="red" stroke="blue" stroke-width="5" />
<path d="M 275,175
v-150
a150,150 0 0,0 -150,150 Z" id="arc-small" fill="yellow" stroke="mediumblue" stroke-width="5" />
<path d="M 500,450 l 50,-25
a25,25 -30 0,1 50,-25 l 50,-25
a25,50 -30 0,1 50,-25 l 50,-25
a25,75 -30 0,1 50,-25 l 50,-25
a25,100 -30 0,1 50,-25 l 50,-25" id="gates" fill="none" stroke="royalblue" stroke-width="5" />
<path d="M 475 175
h 50 v 50
h 50 v 50
h-50 v50
h-50 v-50
h-50 v-50
h50 Z" id="cross" fill="mediumseagreen" stroke="darkgreen" stroke-width="10" />
<use href="#heart"
xlink:href="#heart" x="450" id="clone" fill="red" />
</svg>
|