set background color to hex color css code example
Example: 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>
<style>
div {
background-color: #ffffff; /* add # infront of the hex code */
color: #ffffff; /* add # infront of the hex code */
}
</style>