SVGs
See SVGs. You can put SVGs into an HTML document in the following ways:
- You can just put the
<svg>
element in directly. - You can link to an SVG file with
<img src="my.svg">
. - You can link to an SVG file with a raster fallback with
<object data="my.svg" type="image/svg+xml"><img src="fallback.png" /></object>"