HTML FORMS /
CSS
/
Override Multiple Classes
<!DOCTYPE html> <html> <head> <style> .one{ font-size:20px; } .two { font-size:30px; } .three{ font-size:40px; } .one, .two, .three { color: blue; } </style> </head> <body> <h1 class="one">This is a Heading</h1> <p class="two">This is a paragraph</p> <p class="three">This is another paragraph</p> </body> </html>