Font ColorFont colors in styles are set with thecolor property. For example, this style rule (in a STYLE tag or in a style sheet file) says that all <STRONG>
STRONG {color:red}
So when we use the
I feel <STRONG>very strongly</STRONG> about this. we get this: I feel very strongly about this.
Remember that it's
Color expressions for
.preppy { color:#FF3399; font-weight:900; }
We can then apply the
I'm feelin' <SPAN CLASS="preppy">fiiiiiiine</SPAN>. which gives us I'm feelin' fiiiiiiine.
|