ADDING DOUBLE BORDER TO IMAGE
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<style>
  img {
        padding: 5px;
        border: 8px solid blue;
        background-color: yellow;
      }
</style>
</head>
<body>
	<h1>Adding border to the image</h1>
	 <img src="https://s3.ap-south-1.amazonaws.com/s3.studytonight.com/tutorials/uploads/pictures/1626774502-101156.png" alt="image">	
</body>
</html>