change background in html code example
Example 1: change background of html
<body style="background-color: color or #hexcode here;">
Example 2: how to change background image in html
<style>
div {
background-image: url('img_girl.jpg');
}
</style>