<dl>

Not started

The dl html element is a container for listing definitions. It is typically used with the dt (definition term) and dd (definition description) html elements.

<dl>
  <dt>Definition term</dt>
  <dd>Definition description</dd>
</dl>