CSS text-decoration property add a line to a text in different ways like
- underline
- overline
- line-through
<html>
<head>
<style type="text/css">
#p-underline{
text-decoration: underline;
}
#p-overline{
text-decoration: overline;
}
#p-trough{
text-decoration: line-through;
}
</style>
</head>
<body>
<p id="p-underline">
Underline text decoration
</p>
<p id="p-overline">
Overline text decoration
</p>
<p id="p-trough">
Line through text decoration
</p>
</body>
</html>