0
How to draw a circle in html css java
Hi friends give a solution easy and help me out
2 Answers
+ 1
Html
<svg width="500" height="500">
<circle cx="200" cy="200" r="199" fill="red"/>
</svg>
Css
<div></div>
div{
width:200px;
height:200px;
border-radius:50%;
background-color:red
}
+ 1
This is the correct way, create the element in html and style it in css
https://code.sololearn.com/W0w79s7b58cU/?ref=app