Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS Group Selector</title> <style> h1,h2,p { color:#11a286; font-size:18px; } </style> </head> <body> <h1>This is a heading.</h1> <h2>This is a another heading.</h2> <p>This is a paragraph.</p> </body> </html>