SVG
SVG stands for Scalable Vector Graphics, which is a format for describing two-dimensional graphics in XML. SVG graphics can be scaled without losing quality, making them ideal for creating responsive web designs. To embed an SVG image in an HTML document, you can use the <svg> tag.
<svg viewBox="0 0 100 100">
<circle cx="50" cy="50" r="40" fill="red" />
</svg>
No comments:
Post a Comment