Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titeldes Dokuments</title> <style> p.normal { font-style: normal; } p.italic { font-style: italic; } p.oblique { font-style: oblique; } </style> </head> <body> <h2>Ein Beispiel für Font-style</h2> <p class="normal">Dieser Text ist normal geschrieben.</p> <p class="italic">Dieser Text ist kursiv geschrieben.</p> <p class="oblique">Dieser Text ist schräg geschrieben.</p> </body> </html>