place a background image html code example
Example 1: 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 2: inserting a image in html backgound
<html>
<style>
body
{
background-color: url('url from web');
}
</style>
<body>
<h1></h1>
</body>
</html>