1.) You create a header tag in the XHTML and give it a class name. You also include your header text as you normally would.
CODE
<h2 class="widgets">Widgets</h2>
2.) Then in the CSS you add a background image to that class which is your fancy font.
3.) Finally, so that you don't see the original header text from the XHTML, you move it out of frame using:
CODE
text-indent: -9999px
I know that's essentially hiding text, but it seems to be fairly common on some well-known sites. Will Google kill me for that?










