Underline (<u>)
To make text underlined in HTML, you can use the <u> element. This element simply indicates that the enclosed text should be visually underlined.
Example:
HTML
<p>This is <u>underlined text</u>.</p>
Note:
The <u> element is primarily used for presentation purposes. It doesn't convey any specific semantic meaning about the content....