HTML CSS examples for CSS:Quiz
Set the font size for the page to "20px", and the font size for <h1> to "3em".
<!DOCTYPE html> <html> <head> <style> body {<!-- w ww. java2s .c o m--> font-size: 20px; } h1 { font-size: 3em; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>