how to change the color on text with css code example
Example 1: text color css
.class {
color: white;
}
Example 2: text color css
.YourClass {
color: #ff0000;
}
.class {
color: white;
}
.YourClass {
color: #ff0000;
}