write a program having text inside circle
Answers
Answered by
0
Answer:
To create a basic circle in HTML and CSS:
Start with a <div class="circle"> .
Give it the same width and height – . circle{ width:100px; height:100px; }
Turn it into a circle – . circle{ border-radius: 50%; }
Explanation:
I hope it will help you if correct please mark me as brainliest
Similar questions