CSS Text Decoration
We can provide the TEXT decorations in below mentioned manner:
<html>
<head>
<title>Text Decoration Property of CSS</title>
<style type="text/css">
Und{Text-decoration: underline}
Lin{Text-decoration: line-through}
OLine{Text-decoration:Overline}
NoneDec{Text-decoration:none}
BlinkDec{Text-decoration:blink}
</style>
</head>
<body>
<Und>UnderLine the Content</Und><br>
<Lin>Line Through the Content</Lin><br>
<OLine>Over Line the Content</OLine><br>
<NoneDec>No Decoration</NoneDec><br>
<BlinkDec>Blink The Content</BlinkDec><br>
</body>
</html>