5.3.7 dd : definition data.

The dd tag is used to denote the definition of a term in a definition list. It can occur only inside a definition list tag (dl), after a definition term (dt) tag. It’s usage is identical to the one in HTML.

Example:

<dl>  
<dt>FPC</dt><dd>stands for Free Pascal Compiler.</dd>  
</dl>

Will be typeset as

FPC
stands for Free Pascal Compiler.

See also: dl (175), dt (177), ol (205), ul (234)