Underline text in HTML
In HTML <u> element tags defines Underline texts.
<html>
<body>
<p>This text is normal.</p>
<p><u>This text was underline.</u></p>
</body>
</html>
Input:-
<body>
<p>This text is normal.</p>
<p><u>This text was underline.</u></p>
</body>
</html>
Output:-
Comments
Post a Comment