STYLING THE HEADER
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<style>
  .header {
        background: url("https://s3.ap-south-1.amazonaws.com/s3.studytonight.com/tutorials/uploads/pictures/1626423162-101156.png") no-repeat;
	    background-size: contain;
	    width: 100%;
        height: 200px;  
	    border: 3px solid blue;
        margin: 20px;
		text-align: center;
      }
	  h1 {
	     padding-top: 50px;
	     font-size: 50px;
		 font-family: cursive;
		 background-color: teal;
		 color: yellow;
		 opacity: 0.9;
		 
	  }
	  
</style>
</head>
<body>
   <div class="header">
	<h1>Styling the header</h1>
	
   </div>	
</body>
</html>