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