::first-letter Pseudo-Element Example

We, the people of the United States...

Here is the code.

In the document head or the style sheet.

div.firstLetterExample::first-letter {
				color : blue ;
		    		font-size: xx-large ;
				font-weight: bold ;
}

In the HTML body

<div class="firstLetterExample">
				We, the people of the United States...
</div>
The ::first-letter Pseudo Element adds the rest.