Bootstrap Lists & descriptions are unique. Most of us are familiar with ordered lists and unordered lists. Bootstrap has a different tag for a different kind of list. Here is the code.

Bootstrap Lists & descriptions

Use the dl tag to indicate a list:
<dl>
<dt>Beer</dt>
<dd>- Use as a chaser</dd>
<dt>Jack Daniels</dt>
<dd>- drink before beer</dd>
  </dl>
Try it yourself here.

Sign Up To Comment