Input
Output
<!DOCTYPE html> <html> <head> <style> h1, h2, h3 { color: purple; text-align: center; } </style> </head> <body> <h1>CSS Element Selector Example</h1> <p>This paragraph is styled using the element selector.</p> <h2>CSS Example</h2> <p>All paragraphs share the same style.</p> </body> </html>