underline an element in html code example
Example 1: underline text in html
<!-- Using 'u' tag we can draw underline below the text in HTML -->
<p>Hello all <u>Welcome here !!!</u></p>
Example 2: html u tag
<p>This text is not underlined</p><u>This text is underlined</u>