<g> tag in html code example
Example: 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>