font color css code example
Example 1: text color css
.class {
color: white;
}
Example 2: text color css
body {
color: blue;
}
h1 {
color: green;
}
Example 3: css change text color
p{
color: White;
}
Example 4: text color css
.YourClass {
color: #ff0000;
}
Example 5: font color css
Don't use keywords like green, orange, red or so on because browsers will interpretate them in differen colors. Use rgb or hex instead
Example 6: changong text color css
color: #EAF6F6;
color: red;
color: rgb(255, 255, 255);