HTMLHTML14 min read

HTML SVG

Create scalable vector graphics using SVG.

David Miller
December 29, 2025
1.6k43

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