HTML CSS examples for CSS:Quiz
Set the font family for the page to "Courier New", and the font family for <h1> to "Verdana".
<!DOCTYPE html> <html> <head> <style> body {<!-- w w w .j a v a 2 s. c om--> font-family: "Courier New"; } h1 { font-family: Verdana; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>