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 (108), dt (110), ol (128), ul (153)