Input
Output
<!DOCTYPE html> <html> <head> <style> h1 { color: darkgreen; text-align: center; } p { color: navy; font-size: 18px; } </style> </head> <body> <h1>CSS Element Selector Example</h1> <p>This paragraph is styled using the element selector.</p> <p>All paragraphs share the same style.</p> </body> </html>