circle create in css code example
Example 1: css circle
#circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%
}
Example 2: circle div
border-radius: 50%;
width: 200px;
height: 200px;
/* width and height can be anything, as long as they're equal */