Summary -

In this topic, we described about the <u> tag along with detailed example.

Unarticulated text/underlined text in HTML document. Underlined text/ unarticulated non-textual annotation is used to display the text as underlined text.

Underlined text uses <u> tag. Any text in between <u>..</u> displays as underlined text. <u> element is nested element.

Syntax -

<u>.. text here.. </u>

Example -

<!DOCTYPE html>
<html>
	<head>
		<title>Underlined text example.. </title>
	</head>
	<body>
		<p>This is <u>underlined</u> text.</p>
	</body>
</html>

Output -

This is underlined text.