Sure, use classes: <head> <style> .bigblack {color:#000; font-size:1.8em;letter-spacing:0.2em;text-transform:uppercase} .smallwhite {color:#fff; font-size:0.8em;text-decoration:underline} </style> </head> <body> <h3 class="bigblack">Big Black Header Here, all uppercase</h3> <p>Lore ipsum dolor sit amet...</p> <h3 class="smallwhite">small underlined white H3 here</h3> <p>Lore ipsum dolor sit amet...</p> </body> And depending on the situation, you coul also use direrent id's (#). Hope this helps.
or nest your css <head> <style> div#header h3 {color:#000; font-size:1.8em;letter-spacing:0.2em;text-transform:uppercase} div#content h3 {color:#fff; font-size:0.8em;text-decoration:underline} </style> </head> <body> <div id="header"> <h3>Big Black Header Here, all uppercase</h3> <p>Lore ipsum dolor sit amet...</p> </div> <div id="content"> <h3 class="smallwhite">small underlined white H3 here</h3> <p>Lore ipsum dolor sit amet...</p> </div> </body>