Tag Description
<dt> The HTML <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).

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