HTML Dog
Skip to navigation

HTML Tag: dt

Description list term. Grouped with descriptions (using dd 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>