css content set color of text code example
Example 1: css how to change font colr
html {
color: #f3f3f3;
font-family: cursive;
font-size: 25px;
}
Example 2: text background color css
body {
background-color:rgb(130, 50, 29);
}
html {
color: #f3f3f3;
font-family: cursive;
font-size: 25px;
}
body {
background-color:rgb(130, 50, 29);
}