Chapter 2 — Working with Elements
Shapes are placed using coordinates. Each element has attributes like x, y, cx, cy.
Example:
<svg width="150" height="100" xmlns="http://www.w3.org/2000/svg">
<rect x="20" y="20" width="100" height="50" fill="green"/>
</svg>