html bgcolor code example
Example 1: how to add bgcolor in html
<body bgcolor="teal">
Example 2: background color
//javascript type css:
document.body.style.backgroundColor = "blue";
// or inline css:
<div style="background-color: blue;"></div>
Example 3: css background color
body {background-color: coral;}