< All the HTML Tags >

<svg></svg>

Video Coming Soon...

  • svg

    Tag Type

    inline

    Tag Category

    media

    Defines scalable vector graphics

    Viewed

    1

    Examples

    1

Definition:

The HTML <svg> tag is used to define scalable vector graphics directly in the HTML document, allowing for dynamic graphics and animations.

This tag supports a variety of shapes, paths, and filters, providing flexibility in creating visually appealing graphics for the web.

Incorporating the `<svg>` tag effectively enhances the visual presentation of graphics and illustrations.

Attributes:

Many attributes (e.g., width, height, viewBox, fill, stroke, etc.), Global attributes (e.g., class, id, style)

Accessibility:

Coming Soon…

Default svg Example:

Using the <svg> tag to embed SVG graphics.
<svg width="100" height="100"><circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" /></svg>

Default svg Result:


Coming Soon…

Community Examples:

Coming Soon…
Coming Soon…