<dl> : definition list
Definition lists vary only slightly from other types of lists in that list items consist of two parts: a term and a description. The term is given by the DT element and is restricted to inline content. The description is given with a DD element that contains block-level content.
Attributes
-) compact : enable a compact list
Example
<DL>
<DT>line 1
<DD>def of line 1
<DT>line 2
<DD>def of line 2
<DT>line 3
<DD>def of line 3
</DL>