background color list in html code example
Example 1: css coor background
body {background-color: coral;}
Example 2: background color in hex css
<style>
div {
background-color: #ffffff; /* add # infront of the hex code */
color: #ffffff; /* add # infront of the hex code */
}
</style>