Chapter 2 — Working with Elements
You can style shapes using fill, stroke, and stroke-width.
Example:
<svg width="150" height="100" xmlns="http://www.w3.org/2000/svg">
<rect x="10" y="10" width="100" height="60"
fill="yellow" stroke="black" stroke-width="3"/>
</svg>