I am working towards achieving a specific output similar to the one shown in this https://i.stack.imgur.com/ejiYC.png image.
Currently, I have successfully created the border section. Now, my next challenge is how to overlap images and apply borders as demonstrated in the reference image.
Below is the code snippet I am currently using:
<!DOCTYPE html>
<html>
<head>
<style>
.img1 {
border: 15px solid transparent;
background:
linear-gradient(#faa633, #faa633)
top left/ /* position */
50% 50% /* width height */
border-box no-repeat;
z-index: 1
}
.img2{
border: 15px solid transparent;
background:
linear-gradient(#faa633, #faa633)
top right/ /* position */
50% 100% /* width height */
border-box no-repeat;
z-index: 2
}
</style>
</head>
<body>
<img src="https://picsum.photos/id/10/200/150" class="img1">
<img src="https://picsum.photos/id/10/200/150" class="img2" >
</body>
</html>