HTML Dog
Skip to navigation

HTML Tag: dd

Description list description. Grouped with terms (using dt elements) in description lists (dl).

Optional Attributes

Global attributes

Example


<dl>
    <dt>Dog</dt>
    <dd>A carnivorous mammal of the family Canidae.</dd>

    <dt>HTML</dt>
    <dd>HyperText Markup Language.</dd>
    <dd>A language used to format web documents.</dd>
</dl>