fill background color css code example
Example 1: css background color
body {
background-color: green;
}
Example 2: html change background color
<!DOCTYPE html>
<html>
<body style="background-color:powderblue;">
</body>
</html>
Example 3: html change background color of page
<body bgcolor="some color">
HTML goes here
</body>
Example 4: background color
//javascript type css:
document.body.style.backgroundColor = "blue";
// or inline css:
<div style="background-color: blue;"></div>