HTML/CSS/CSS Attributes and Javascript Style Properties/first letter
"first-letter" Example
<html>
<head>
<style>
p:first-letter { font-size:150%; color:red; }
</style>
</head>
<body>
<p>This is a sample text.</p>
</body>
</html>
<html>
<head>
<style>
p:first-letter { font-size:150%; color:red; }
</style>
</head>
<body>
<p>This is a sample text.</p>
</body>
</html>