<!DOCTYPE html>
<html>
<head>
<title>Overlapping Images with Scrollbar</title>
<style>
.image-container {
position: relative;
width: 400px;
height: 300px;
}
.image1 {
position: absolute;
top: 0;
left: 30px;
z-index: 1;
opacity:0.7;
content: "Image 1";
}
.image2 {
position: absolute;
top: 0;
left: 0;
z-index: 2;
opacity:0.2;
content: "Image 2";
}