dbackground color css code example
Example 1: how to change background color in css
body{
background: lightblue;
}
Example 2: background color
//javascript type css:
document.body.style.backgroundColor = "blue";
// or inline css:
<div style="background-color: blue;"></div>