CSS
Cascading Style Sheet
This property defines specific text effects. Possible values are Blink, Line-through, Overline, Underline and None.
Example
<html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text1
{
text-decoration: line-through;
}
.text2
{
text-decoration: overline;
}
.text3
{
text-decoration: underline;
}
.text4
{
text-decoration: none;
}
</style> </head>
<body>
<span class="text1">Laziness</span>
</br><span class="text2">knowledge</span>
</br><span class="text3">Skills</span>
</br><span class="text4">Education</span> </body> </html>
<head>
<title>Skillpundit</title>
<style type="text/css"> .text1
{
text-decoration: line-through;
}
.text2
{
text-decoration: overline;
}
.text3
{
text-decoration: underline;
}
.text4
{
text-decoration: none;
}
</style> </head>
<body>
<span class="text1">Laziness</span>
</br><span class="text2">knowledge</span>
</br><span class="text3">Skills</span>
</br><span class="text4">Education</span> </body> </html>
Output