css background color and text color code example
Example 1: css background color
body {
background-color: green;
}
Example 2: text color css
.class {
color: white;
}
Example 3: text color css
body {
color: blue;
}
h1 {
color: green;
}