HTML Other List

Other types of lists include description lists. A description list is a list of terms, with a description of each term.

Example:

<dl>
  <dt>Coffee</dt>
  <dd>- black hot drink</dd>
  <dt>Milk</dt>
  <dd>- white cold drink</dd>
</dl>

This will render as:

Coffee
- black hot drink
Milk
- white cold drink