Border radius allows you to specify rounded corners for an Element. When you increase the border radius to the width of the element , you ll get a beautiful circle with just pure CSS.How's that !
.box1{
border-radius:10px
}
.circle{
border-radius:25px;
}
.box2{
/*border-radius:Top Right Bottom Left*/
border-radius:15px 5px 15px 5px;
}