Site icon DataFlair

Pseudo-classes in CSS

Full Stack Web Development Courses with Real-time projects Start Now!!

Program 1

<html>
    <head>
        <style>
            p::first-line{
                color:aqua;
            }
        </style>
    </head>
    <body>
        <p>This is my website.
             Its about my blogs.</p>
    </body>
</html>

 

Exit mobile version