text color background css code example
Example 1: css background color
body {
background-color: green;
}
Example 2: text color css
.class {
color: white;
}
Example 3: text background color css
body {
background-color:rgb(130, 50, 29);
}
Example 4: font color css
Don't use keywords like green, orange, red or so on because browsers will interpretate them in differen colors. Use rgb or hex instead