When you create an ordered list on your Web page, the default style is numeric like this:
- list item 1
- list item 2
- list item 3
Sometimes however you want your list to be ordered alphabetically instead of numerically. Apply an alpha style to your ordered list like this:
< ol style=”list-style: lower-alpha;” >
a. list item a
b. list item b
c. list item c
</ol>
For more information, see Style Guide/Lists.