SVG (Scalable Vector Graphics) can be embedded inline with the <svg> tag or as an external file using the <img> or <object> tags.
<svg>
<img>
<object>
Example:
<svg width="100" height="100"> <circle cx="50" cy="50" r="40" stroke="black" fill="red"/> </svg>