Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS Font Family</title> <style> h1 { font-family:arial; } h2 { font-family:serif; } p { font-family:monospace; } </style> </head> <body> <h1>This is heading.</h1> <h2>This is another heading</h2> <p>This is a paragraph</p> </body> </html>