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 (176), dt (178), ol (206), ul (235)