how to make pictures circle in html code example
Example 1: css photo circle
img{
clip-path: circle();
}
Example 2: css crop image to circle
background-image: url("url");
width:100px;
height:100px;
background-size:contain;
background-position:center;
border-radius:50%;