Tag <dt> HTML Reference



Example

A definition list:

<dl>
  <dt>Coffee</dt>
    <dd>- black hot drink</dd>
  <dt>Milk</dt>
    <dd>- white cold drink</dd>
</dl>

Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

1. Definition and Usage

The <dt> tag defines an item in a definition list.

The <dt> tag is used in conjunction with <dl> (defines the definition list) and <dd> (describes the item in the list).


2. Differences Between HTML 4.01 and HTML5

In HTML 4.01, the <dt> tag defines an item in a definition list.

In HTML5, the <dt> tag defines a term/name in a description list.


3. Standard Attributes

The <dt> tag supports the Standard Attributes in HTML.


4. Event Attributes

The <dt> tag also supports the Standard Event Attributes in HTML.


Relative articles