<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div{
height: 2000px;
}
.one {background-image: url(./sed.jpg);
background-size:auto;
background-repeat: no-repeat;
position: relative;
}
.one:hover{
background-image: url(./arr.png);
opacity: 0.2;
position: absolute;
}
</style>
</head>
<body>
<div class="one"></div>
</body>
</html>