Tag Description
<dd> The HTML <dd> tag is used to describe an item in a definition list. The <dd> tag is used in conjunction with <dl> (defines the definition list) and <dt> (defines the item in the list).

Example:

HTML Code Display

<dl> 
    <dt>Definition List</dt> 
        <dd>A list of terms and their 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 their descriptions
Ordered List
A number list
Unordered List
An unnumbered list