Definition list sample

These are html tags you type.


<dl>
  <dt> elephant </dt>
    <dd> large animal </dd>
  <dt> bee </dt>
    <dd> animal, smaller than an elephant </dd>
</dl>

This is the resulting web page content:


elephant
large animal
bee
animal, smaller than an elephant