SCALE IMAGE USING BACKGROUND-SIZE: COVER PROPERTY
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<style>
   .container {
      background: url("https://s3.ap-south-1.amazonaws.com/s3.studytonight.com/tutorials/uploads/pictures/1626423162-101156.png") no-repeat;
	  background-size: cover;
	  width: 500px;
      height: 200px;  
	  border: 3px solid blue;
      margin: 20px;
   }
   
</style>
</head>
<body>
    <h2> scale image to fit background using CSS</h2>
	<div class="container">
		
	</div>
	
</body>
</html>