How to display a non-circular image in circle using html/css?

How to display a non-circular image in circle using html/css?

You can use border-radius property to add rounded corner to the image.
border-radius: 50%;

50% will give the image result circular in shape.