add image background html code example
Example 1: background image html
<head>
<style>
.background {
background-image: url(https://cleananddelicious.com/wp-content/uploads/2016/03/Avocad0-CD.jpg);
}
</style>
</head>
<body>
<div class=background>
<h1>The background of this div will be an avocado</h1>
</div>
</body>
Example 2: how to add background in html
<!DOCTYPE HTML>
<html lang=us>
<meta charset=UTF-8>
//the following code within the style tags is CSS.
<style>
body{background:rgb(255,0,0);
}
.green{background:green}
#blue{background:blue}
</style>
<body>
This background is red.
// you must make sure to note that when you add a background to
a paragraph, you must add a class or id, name it, then style it
as seen above. with tags HTML already recognizes, however, you
don't have to do anything more than shown above.
<p class="green">
This background is green.</p>
<p id="blue">This background is blue.</p>
</body>
</style>
</html>
Example 3: adding background image
body{background-image: url("paper.gif");}