About
svg element are elements of the SVG language
They defines:
- geometric shape such as circle
- or the more generic path element
Bounded together below the svg root element, they define a vectoriel image ready to be painted.
Articles Related
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>