svg icons w3 path code example
Example 1: SVG arc
SVG <path> arc
A rx ry x-axis-rotation large-arc-flag sweep-flag(clockwise?) x y
a rx ry x-axis-rotation large-arc-flag sweep-flag(clockwise?) dx dy
Example 2: g tag in html
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<!-- Using g to inherit presentation attributes -->
<g fill="white" stroke="green" stroke-width="5">
<circle cx="40" cy="40" r="45" />
<circle cx="60" cy="60" r="25" />
</g>
</svg>