How can you embed SVG graphics in HTML?

SVG (Scalable Vector Graphics) can be embedded inline with the <svg> tag or as an external file using the <img> or <object> tags.

Example:

<svg width="100" height="100">
  <circle cx="50" cy="50" r="40" stroke="black" fill="red"/>
</svg>