HTML <dd> tag

Updated: 11/13/2018 by Computer Hope
HTML dd tag

When writing in HTML (hypertext markup language), the <dd> tag, also called the HTML description element, gives details about a term in a description list (<dl>). The <dd> tag must be the child of the list or <dt> tag. The <dd> tag must also follow the <dt> element. The following sections contain information about the <dd> tag, including an example of it in use, and related attributes and browser compatibility.

Example of <dd> code

<dl>
<dt>Bear</dt>
<dd>Large brown mammal</dd>
<dt>Frog</dt>
<dd>Small green amphibian</dd>
</dl>

Example result

Bear
Large brown mammal
Frog
Small green amphibian

Attributes

All HTML tags support standard attributes that define the settings of an HTML element. Unlike other HTML tags, the <dd> tag has no unique attributes.

Compatibility

Edge Internet Explorer Firefox Safari Opera Chrome
All versions All versions All versions All versions All versions All versions

Browser, Compatibility, Container tag, Web design terms