SVG in HTML — a practical guide to SVG in HTML with clear examples you can reuse in real projects.
HTML Tutorial Series (59/79). Prefer one article? Read the complete HTML tutorial.
Short description
Inline SVG can be styled/accessible; decorative SVGs should be hidden from AT appropriately.
Inline SVG
<svg width="24" height="24" aria-hidden="true" focusable="false">
<circle cx="12" cy="12" r="10" fill="currentColor" />
</svg>