Dl

<DL> </DL>

The DL command is used to provide a list of items with their definitions. DL cannot contain plain text or any tag other than DT or DD. The format should be a DL followed by a DT with the word to be defined, and then a DD with the definition.

Example:

<DL>
<DT>HTML</DT>
<DD>Hyper Text Markup Language</DD>
</DL>

HTML
Hyper Text Markup Language