HTML dl Tag

Example

A definition list, with items and descriptions:
<dl>
  <dt>Coffee</dt>
    <dd>Black hot drink</dd>
  <dt>Milk</dt>
    <dd>White cold drink</dd>
</dl>

Teach Yourself  by BH24 HTML Editor Tool!

The <dl> tag is supported in all major browsers.

Definition and Usage

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