SVG as image

When adding SVG images with <img>, assistive technologies understand that it's in fact an image, and you can provide alt="..." text.

Hello Kitty!
<img src="..." alt="Hello Kitty!">

When using embedded <svg>, we can achieve the same effect using ARIA.

<svg role="img" aria-label="Hello Kitty!"> ... </svg>