HTML SVG
SVG (Scalable Vector Graphics) is an XML-based format for vector images. Unlike Canvas, SVG elements are part of the DOM and can be styled with CSS and manipulated with JavaScript.
Why SVG?
- Scales to any size without pixelation
- Smaller file size for simple graphics
- Animatable with CSS and JS
- Accessible (text inside SVG is readable)
Common SVG Elements
<rect>— Rectangle<circle>— Circle<line>— Line<text>— Text<path>— Complex shapes