Site icon DataFlair

Fonts in CSS

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

Program 1

<html>
    <head>
        <style>
            p{
                font-size: 34px;
                color:green;
                font-family:sans-serif;
                font-style:oblique;
            }
        </style>
    </head>
    <body>
        <p>this is my webpage</p>
    </body>
</html>

 

Exit mobile version