totn HTML

HTML: <u> tag

This HTML tutorial explains how to use the HTML element called the <u> tag with syntax and examples.

Description

The HTML <u> tag defines text that should be styled differently or have a non-textual annotation. Browsers traditionally render the text found within the <u> tag as underlined text. This tag is also commonly referred to as the <u> element.

TIP: If you wish to underline text, you should use CSS such as the text-decoration property instead of the <u> tag. Be careful to make sure that your underlined text is not confused with a hyperlink.

Syntax

In HTML, the syntax for the <u> tag is:

<body>
<p><u>Differently stylized text goes here</u> and not here</p>
</body>

Sample Output


Attributes

Only the Global Attributes apply to the <u> tag. There are no attributes that are specific to the <u> tag.

Note

  • The HTML <u> element is found within the <body> tag.
  • The <u> tag is used to style the text differently than normal text. Browsers traditionally format the text found within the <u> tag with an underline. You can change this behavior with CSS.

Browser Compatibility

The <u> tag has basic support with the following browsers:

  • Chrome
  • Android
  • Firefox (Gecko)
  • Firefox Mobile (Gecko)
  • Internet Explorer (IE)
  • Edge Mobile
  • Opera
  • Opera Mobile
  • Safari (WebKit)
  • Safari Mobile

Example

We will discuss the <u> tag below, exploring examples of how to use the <u> tag in HTML5, HTML 4.01 Transitional, XHTML 1.0 Transitional, XHTML 1.0 Strict, and XHTML 1.1.