<!DOCTYPE html>
<html>
<head>
<title>CSS text-decoration property</title>
<style>
p {
font-family: sans-serif;
font-size: 17px;
padding: 10px;
}
p.one {
text-decoration: overline;
}
p.two {
text-decoration: line-through;
}
p.three {
text-decoration: underline;
}
p.four {
text-decoration: underline overline;
}
p.five {
text-decoration: wavy overline red;
}
</style>
</head>
<body>
<p class="one">This is a paragraph</p>
<p class="two">This is a paragraph</p>
<p class="three">This is a paragraph</p>
<p class="four">This is a paragraph</p>
<p class="five">This is a paragraph</p>
</body>
</html>