H1 First Letter
If you look at my sidebar or even the header above what you're reading now, you'll notice that the first letter of my header is different in size, font and, depending on my current layout, colour. You can acheieve the same effect by adding the CSS below to your current Stylesheet.
h1:first-letter {
color: #000000;
font-family: arial;
font-size: 30px;
text-transform: uppercase;
font-weight: bold;
}


