rgb background color code example
Example 1: background color css rgb
body {
background-color: rgb(255,255,255);
}
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>