HTMLHTML14 min read

HTML SVG

Create scalable vector graphics using SVG.

David Miller
December 31, 2025
0.0k0

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