Edit This Code:
<!DOCTYPE html>
<html>
<head>
<style>
p {
     -moz-text-decoration-line: overline; /* Code for Firefox */
     text-decoration-line: overline;
}

</style>
</head>
<body>

<p>The paragraphs in this example should be displayed with a line on top.</p>

<p><b>Note:</b> The text-decoration-line is not supported in any of the major browsers.</p>

<p><b>Note:</b> Firefox supports an alternative, the -moz-text-decoration-line property.</p>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy