Calss Selector

 <!DOCTYPE html>

<html>
    <head>
        <title>Tag Selector</title>
        <style type="text/css">
            .txtclrcls{
                color: yellow
            }          
        </style>
    </head>
    <body>
        <h1>Paragraph tag</h1>
        <p class="txtclrcls">This is Para 1</p> <br>
        <p>This is Para 2</p> <br>
        <p class="txtclrcls">This is Para 3</p> <br>
        <p>This is Para 4</p> <br>

        <h1 class="txtclrcls">Label Tag</h1>
        <label class="txtclrcls">This is Label 1  </label> <br><br>       
        <label>This is Label 2  </label> <br><br>
        <label>This is Label 3  </label> <br><br>
        <label>This is Label 4  </label> <br><br>
    </body>
</html>