How to create or draw a circle using SVG in HTML?
Originally Published Here ๐!
To create a circle, you can use the circle element inside the svg element in HTML.
TL;DR
<!-- Create circle in SVG -->
<svg>
<circle cx="30" cy="30" r="30" />
</svg>
For example, to make a circle with a 30px as its ra...
melvingeorge-me.hashnode.dev2 min read