<!DOCTYPE html>
<html>
<head>
<title>CSS ::first-letter Selector</title>
<style>
p::first-letter {
font-size: 28px;
color: #FF0000;
}
</style>
</head>
<body>
<p>This example is first-letter of every paragraph.</p>
<p>This example is first-letter of another one paragraph.</p>
</body>
</html>