make image circle code example
Example 1: svg circle
<svg width="100" height="100">
<circle cx="50%" cy="50%" r="10" fill="red"/>
</svg>
Example 2: crop image with circle css
.image-cropper {
width: 100px;
height: 100px;
position: relative;
overflow: hidden;
border-radius: 50%;
}
img {
display: inline;
margin: 0 auto;
height: 100%;
width: auto;
}