Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> p.normal { font-style: normal; } p.italic { font-style: italic; } p.oblique { font-style: oblique; } </style> </head> <body> <h2>Font-style property example</h2> <p class="normal">We wrote this text as normal.</p> <p class="italic">We wrote this text as italic.</p> <p class="oblique">We wrote this text as oblique.</p> </body> </html>