Darker Text

Submitted by williamrouse on Fri, 12/11/2009 - 17:21

How would I go about getting text darker? For example, I have some text:
<h2 class="fancy">Contact Information</h2>
I want to make the text darker. How would I go about this?
Thanks!
WBR

If you want to make all h2's with class="fancy" text darker, then do something like this in your style.css:

h2.fancy {
color: black;
}

Thanks!