CSS Styling Practice Activity Solution

<!-- TASK: Update the style of this page so that each line of text is a true statement -->

<!DOCTYPE html>
<html>

    <head>
        <style>
            /* TODO */
            .special-text {
                /* create a custom CSS class to be included by an html element */
                color:red;
            }
            #unique-element {
                /* provide CSS styling specific to fields with this id name */
                font-weight:bold;
            }
            p {
                /* provide CSS styling specific to fields with this html tag name */
                font-size:18px;
            }

        </style>
    </head>

    <body>
        <p class="special-text"> This text is red. </p>
        <p id="unique-element"> This text is bold. </p>
        <p> This text has a font size of 18px. </p>
    </body>

</html>