css text background color code example
Example 1: css background color
body {
background-color: green;
}
Example 2: background color css
html,body {
background-color: red;
}
Example 3: text color css
.class {
color: white;
}
Example 4: text color css
body {
color: blue;
}
h1 {
color: green;
}
Example 5: css how to change font colr
html {
color: #f3f3f3;
font-family: cursive;
font-size: 25px;
}
Example 6: text background color css
body {
background-color:rgb(130, 50, 29);
}