Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS elements selector</title> <style> p, h4, span { font-size:24px; } </style> </head> <body> <p>This is paragraph text</p> <h4>This is h4 heading text</h4> <span>This is another span text</span> </body> </html>
  Preview Arrow