To make an image a circle, we set border-radius to half the width of an image. It only works if the image is a square though!

<head>
<style>
img {
height: 100px;
width: 100px;
border-radius: 50px;
}

</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img src="https://mimo.app/r/lighthouse.png">
</body>
</html>]]>

Make sure to pick 50px.