<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Textdekoration - Cascading Style Sheets - Workshop Internet-Präsenz</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="DE" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta name="description" content="Übung Cascading Style Sheets. Textdekoration." /> <meta name="keywords" content="HTML, Cascading Style Sheets" /> <meta name="author" content="Roland Unger" /> <style type="text/css"> <!-- .overline { text-decoration: overline; } .underline { text-decoration: underline; } .overunder { text-decoration: overline underline; } --> </style> </head> <body> <h1>Textdekoration</h1> <p class="underline">Der ist in diesem Absatz ist unterstrichen.</p> <p class="overline">Der ist in diesem Absatz ist überstrichen.</p> <p class="overunder">Der ist in diesem Absatz ist sowohl über- als auch unterstrichen.</p> </body> </html>