HTML SVG
Create scalable vector graphics using SVG.
David Miller
Dec 28, 2025
16.4k703
SVG is used for icons and scalable drawings.
## Example
```html
<svg width="120" height="100">
<circle cx="50" cy="50" r="40" fill="red" />
</svg>
```
## UI Preview
A red circle appears.
## SVG vs Canvas
- SVG = icons, logos
- Canvas = animations, games
#HTML#Graphics