Lists

Ordered List

An ordered list (data from: http://fs.ncaa.org/Docs/stats/m_basketball_RB/2020/Coaches.pdf):

Example 4.27 - Ordered List: default - Example 4.27

 <strong>Winningest Active Coaches, Division I NCAA Men's Basketball </strong>
 <ol>
   <li>Mark Few
   </li>
   <li>Roy Williams
   </li>
   <li>John Calipari
   </li>
   <li>Mike Krzyzewski
   </li>
   <li>Bill Self
   </li>
   <li>Sean Miller
   </li>
   <li>Tony Bennett
   </li>
   <li>Ray Harper
   </li>
   <li>Tom Izzo
   </li>
   <li>Bruce Pearl
   </li>
 </ol>
Winningest Active Coaches, Division I NCAA Men's Basketball
  1. Mark Few
  2. Roy Williams
  3. John Calipari
  4. Mike Krzyzewski
  5. Bill Self
  6. Sean Miller
  7. Tony Bennett
  8. Ray Harper
  9. Tom Izzo
  10. Bruce Pearl
 

Ordered List

An ordered list:

Example 4.28 - Ordered List: upper-roman - Example 4.28 (Without Styles)

 <strong>Winningest Active Coaches, Division I NCAA Men's Basketball </strong>
 <ol class="basketball">
   <li>Mark Few
   </li>
   <li>Roy Williams
   </li>
   <li>John Calipari
   </li>
   <li>Mike Krzyzewski
   </li>
   <li>Bill Self
   </li>
   <li>Sean Miller
   </li>
   <li>Tony Bennett
   </li>
   <li>Ray Harper
   </li>
   <li>Tom Izzo
   </li>
   <li>Bruce Pearl
   </li>
 </ol>

In style element (<style>) within head element:

ol.basketball {
   list-style: upper-roman;
}
Winningest Active Coaches, Division I NCAA Men's Basketball
  1. Mark Few
  2. Roy Williams
  3. John Calipari
  4. Mike Krzyzewski
  5. Bill Self
  6. Sean Miller
  7. Tony Bennett
  8. Ray Harper
  9. Tom Izzo
  10. Bruce Pearl