css set text color code example
Example 1: how to change hyperlink color in css
a {
background-color: red;
color: white;
padding: 1em 1.5em;
text-decoration: none;
text-transform: uppercase;
}
Example 2: text color css
.class {
color: white;
}
Example 3: text color css
body {
color: blue;
}
h1 {
color: green;
}
Example 4: changong text color css
color: #EAF6F6;
color: red;
color: rgb(255, 255, 255);
Example 5: css font color
color:#ffffff; /*!important; to overwrite inline css*/
Example 6: css font color
color:#ffffff;