Using the first-letter pseudo-element to create a "drop cap" letter
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
body { padding: 0 36px; font-family: cursive; }
h3 { text-align: center; }
div p:first-child:first-letter { font-size: 300%; color: #999; }
</style>
</head>
<body>
<h3>The Raven</h3>
<div>
<p>Once upon a midnight dreary, while I pondered, weak and weary,
Over many quaint and curious volume of forgotten lore—</p>
<p>While I nodded, nearly napping, suddenly there came a tapping, As
of some one gently rapping, rapping at my chamber door.</p>
</div>
</body>
</html>
Related examples in the same category