html back ground for a word code example
Example 1: text background color css
body {
background-color:rgb(130, 50, 29);
}
Example 2: background color
//javascript type css:
document.body.style.backgroundColor = "blue";
// or inline css:
<div style="background-color: blue;"></div>