HTML — Embedding SVG in HTML
SVG (Scalable Vector Graphics) allows you to embed vector graphics in HTML. It scales without losing quality and is great for icons or charts.
<svg width=\"100\" height=\"100\">
<circle cx=\"50\" cy=\"50\" r=\"40\" stroke=\"black\" stroke-width=\"3\" fill=\"red\" />
</svg>