0
how do I create a circle shape on my page and the possible design to it?
please show the syntax (html/css )
5 Answers
0
You can look for the answer in the html course, otherwise look for the html tag circle used when working with canvas
0
ok
0
.circle {
background:red;
width:200px;
height:200px;
border-radius:50%;
display:inline-block;
}
<div class="circle"></div> or you can even use span in place of div
0
Use canvas
- 1
value