Chapter 1 — Basics of SVG
SVG provides simple elements like rectangles, circles, and lines to create graphics.
Example:
<svg width="120" height="120" xmlns="http://www.w3.org/2000/svg">
<circle cx="60" cy="60" r="50" fill="blue"/>
</svg>