set page background html code example
Example 1: css background image
background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Example 2: html how to change background color
<body style="background-color:powderblue;">
<p style="background-color:tomato;">This paragraph has a red background.</p>
</body>
Example 3: how to put background in html
.background{
background-image:url(back.jpg);
background-size: cover;
background-attachment: scroll;
}