<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Slider</title>
<style>
.image-slider {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
position: relative;
}
.image-slider img {
max-width: 100%;
max-height: 100%;
cursor: pointer;
position: absolute;
top: 0;
left: 0;
opacity: 0;
transition: opacity 0.5s ease;
}
.image-slider img:target {
opacity: 1;
}
</style>
</head>
<body>
<div class="image-slider">
<img id="image1" src="https://static1.squarespace.com/static/5cc2960234c4e204158ea5d5/t/65ce336d3963742d6f3c464e/1708012400278/Cards-15.jpg" alt="Image 1">
<img id="image2" src="https://static1.squarespace.com/static/5cc2960234c4e204158ea5d5/t/65ce337859815d4bd47af9b9/1708012413561/Cards-16.jpg" alt="Image 2">
<img id="image3" src="https://static1.squarespace.com/static/5cc2960234c4e204158ea5d5/t/65ce338459815d4bd47afc23/1708012422544/Cards-17.jpg" alt="Image 3">
<img id="image4" src="https://static1.squarespace.com/static/5cc2960234c4e204158ea5d5/t/65ce339644c67f422e9c1f57/1708012439898/Cards-18.jpg" alt="Image 4">
</div>
</body>
</html>