Rectangle

Koodi:

<rect x="20" y="20" width="120" height="70"
fill="lightblue"
stroke="black"
stroke-width="3"
rx="15">
</rect>

Circle

Koodi:

<circle cx="80" cy="60" r="40"
fill="pink"
stroke="purple"
stroke-width="5">
</circle>

Ellipse

Koodi:

<ellipse cx="100" cy="60"
rx="70"
ry="30"
fill="lightgreen"
stroke="darkgreen"
stroke-width="4">
</ellipse>

Numero 8

Koodi:

<path d="
M100 50
C60 50 60 100 100 100
C140 100 140 50 100 50
M100 100
C60 100 60 150 100 150
C140 150 140 100 100 100
"
fill="red"
stroke="black"
stroke-width="4">
</path>

Jalokivi

Koodi:

<polygon points="100,20 140,50 120,100 80,100 60,50"
fill="cyan"
stroke="black"
stroke-width="3">
</polygon>