CSS Selectors
<!DOCTYPE html> <html> <head> <style> h1 { color: #00643c; } h2 { color: #00643c; } h3 { color: #00643c; } </style> </head> <body> <h1>Heading One</h1> <h2>Heading Two</h2> <h3>Heading Three</h3> </body> </html>
<!DOCTYPE html> <html> <head> <style> h1 { color: #00643c; } h2 { color: #00643c; } h3 { color: #00643c; } </style> </head> <body> <h1>Heading One</h1> <h2>Heading Two</h2> <h3>Heading Three</h3> </body> </html>