<html>
<head>
<style>
p::first-letter {
color: #ff0000;
font-size: xx-large;
}
p::first-line {
color: #0000ff;
font-variant: small-caps;
}
</style>
</head>
<body>
<p>Вы можете комбинировать псевдоэлементы ::first-letter и ::first-line, чтобы добавить особый эффект к первой букве и первой строке текста!</p>
</body>
</html>