how to change background image in html code example
Example 1: how to change background image in html
<style>
div {
background-image: url('img_girl.jpg');
}
</style>
Example 2: how to change the background in html
<body style="background-color: anything you want">
[insert 10000 lines of code here]
</body>
Example 3: background image html
<!-- Background images are better implemented in CSS -->
<!-- but here is how you could do it in HTML in a pinch -->
<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 4: how to add background in html
<!DOCTYPE HTML>
<html lang=us>
<meta charset=UTF-8>
<style>
body{background:rgb(255,0,0);
}
.green{background:green}
#blue{background:blue}
</style>
<body>
This background is red.
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 5: adding background image
body{background-image: url("paper.gif");}