List

A structured collection of related items, presented in a sequence with or without specific ordering, to organize content for easy readability.


Unordered List

A collection of items presented with bullet points, used to display content where order isn’t important.

<ul>

.bt1d-list

  • List Item
  • List Item
  • List Item
<ul class="bt1d-list"/>
    <li> List Item </li>
    <li> List Item </li>
    <li> List Item </li>
</ul>

Ordered List

A sequential collection of items presented with numbers, used to display content where the order or ranking of items matters.

<ol>

.bt1d-list

  1. List Item #1
  2. List Item #2
  3. List Item #3
<ol class="bt1d-list"/>
    <li> List Item #1 </li>
    <li> List Item #2 </li>
    <li> List Item #3 </li>
</ol>