Tag Description
<dl> The HTML <dl> tag defines a definition list. The <dl> is used in conjunction with <dt> which defines the item in the list, and <dd> which describes the item in the list.

Example:

HTML Code Display

<dl> 
    <dt>Definition List</dt>
        <dd>A list of terms and descriptions</dd>
    <dt>Ordered List</dt>
        <dd>A numbered list</dd>
    <dt>Unordered List</dt>
        <dd>An unnumbered list</dd>
</dl>
                
Definition List
A list of terms and descriptions
Ordered List
A number list
Unordered List
An unnumbered list