Tag Selector In CSS

     

    Code:

    <html>
    <head>
    <title>CSS Tag Selector</title>
    <style type="text/css">
    p {
    color: blue;
    font-size: 150%;
    font-family: book antiqua;
    Text-decoration: underline;
    }
    </style>
    </head>
    <body>
    <p>This is about tag selector </p>
    </body>
    </html>

    Output: