I have designed the UI, but I'm struggling to create the border effect shown in the image below:
https://i.sstatic.net/Jdp17.png
<div>
<img class='image1' src='https://www.w3schools.com/w3css/img_lights.jpg' />
<img class='image2' src='https://www.w3schools.com/w3css/img_lights.jpg' />
</div>
Css
div {
text-align: center
}
.image1 {
border: 15px solid seagreen;
outline: 15px solid green;
width:'150px';
height:'150px';
border-radius: 75%
}
.image2 {
border: 15px solid seagreen;
position: relative;
right:25px;
width:'150px';
height:'150px';
border-radius: 75%
}