RESPONSIVE IMAGE
Run
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
	/* For medium devices (e.g. tablets) */
	@media (min-width: 420px) {
	  img {
		max-width: 48%;
	  }
	}
	/* For large devices (e.g. desktops) */
	@media (min-width: 760px) {
	  img {
		max-width: 24%;
	  }
	}

</style>
</head>
<body>
	<h1>Responsive Images Example</h1>
	<h2>Resize the window to see responsive image scale up and down</h2>
	<img src="https://s3.ap-south-1.amazonaws.com/s3.studytonight.com/tutorials/uploads/pictures/1626954731-101156.png" alt="pic">
</body>
</html>