Table of Contents

SVG - Element

About

svg element are elements of the SVG language

They defines:

Bounded together below the svg root element, they define a vectoriel image ready to be painted.

Example

A svg root element and a circle.

<svg height="120">
    <circle cx="60" cy="60" r="50" fill="#D5D8CB" stroke="#ECDCC6" stroke-width="5"/>
</svg>