css property to change text color code example
Example 1: css change text color
p{
color: White;
}
Example 2: text background color css
body {
background-color:rgb(130, 50, 29);
}
p{
color: White;
}
body {
background-color:rgb(130, 50, 29);
}