This should be achievable with the list-style-type CSS property. Try out this code below, and see if this is working how you would like:

.name-list {
  list-style-type: upper-alpha;
}
<ol class="name-list">
  <li>Bill</li>
  <li>Steve</li>
  <li>William</li>
</ol>
Answer from Jeith on Stack Overflow
๐ŸŒ
W3Schools
w3schools.com โ€บ html โ€บ html_lists_ordered.asp
HTML Ordered Lists
HTML Tag List HTML Attributes HTML ... Lang Codes HTTP Messages HTTP Methods PX to EM Converter Keyboard Shortcuts ... The HTML <ol> tag defines an ordered list....
๐ŸŒ
MDN Web Docs
developer.mozilla.org โ€บ en-US โ€บ docs โ€บ Web โ€บ HTML โ€บ Reference โ€บ Elements โ€บ ol
<ol>: The Ordered List element - HTML | MDN
November 7, 2025 - The <ol> HTML element represents an ordered list of items โ€” typically rendered as a numbered list.
Discussions

How do I make a lettered ordered list in HTML using CSS Style (not using type) - Stack Overflow
The question states this: Do not use the type attribute to change the appearance of something. I know I have mentioned that in some circumstnaces it is okay. However, for this assignment - and for ... More on stackoverflow.com
๐ŸŒ stackoverflow.com
HTML + CSS: Ordered List without the Period? - Stack Overflow
I think the answer to this question is no... but does anyone know of a an HTML/CSS way to create an ordered list without a period after the numbers? Or, alternatively, to specify the separator char... More on stackoverflow.com
๐ŸŒ stackoverflow.com
What's the point in coding a list in HTML?
HTML is not about presentation, it's about semantic structure. You can build a list with paragraphs, line breaks, and the bullet point character; it will look about the same if you do. But anything that isn't a human looking at your website won't be able to tell it's a list; they'll see it for exactly what it is, a bunch of paragraphs with bullet point characters. So things like screen readers might read it incorrectly, trying to actually pronounce the bullet point. Software like Google's indexing engines won't be able to treat the list as a list of potential keywords or search terms, or to pull it out into an info box for display. Using semantic HTML allows for machines to parse your page just as easily as humans. More on reddit.com
๐ŸŒ r/learnprogramming
16
25
January 3, 2023
ordered list numbers removed in flex css
Would it be possible to add a url or codepen? It is really hard to debug without seeing your code. Thank you! More on reddit.com
๐ŸŒ r/css
11
2
October 20, 2024
๐ŸŒ
W3Schools
w3schools.com โ€บ html โ€บ html_lists.asp
HTML Lists
Each list item starts with the <li> tag. The list items will be marked with bullets (small black circles) by default: <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> ... An ordered list starts with the <ol> tag.
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ html โ€บ html-ordered-lists
HTML Ordered Lists - GeeksforGeeks
July 23, 2025 - An HTML Ordered List is created using the <ol> tag to display items in a specific sequence, typically numbered or alphabetically ordered. Each list item is defined using the <li> (list item) tag.
๐ŸŒ
W3C
w3.org โ€บ MarkUp โ€บ html3 โ€บ seqlists.html
Ordered Lists
An ordered list typically is a numbered list of items. HTML 3.0 gives you the ability to control the sequence number - to continue where the previous list left off, or to start at a particular number. The numbering style is left to associated style sheets, e.g.
๐ŸŒ
Mimo
mimo.org โ€บ glossary โ€บ html โ€บ ordered-lists
Organize Content with HTML Ordered Lists | Learn HTML Now
The HTML <ol> tag creates an ordered list of items, with each list item having a number (or letter) in front of it.
Find elsewhere
๐ŸŒ
Tutorialspoint
tutorialspoint.com โ€บ html โ€บ html_ordered_lists.htm
HTML - Ordered Lists
An ordered list is a collection of items that have a specific order or sequence. HTML ordered list is created by <ol> tag where each list item is defined by the <li> tag.
๐ŸŒ
Programiz
programiz.com โ€บ html โ€บ ordered-list
HTML Ordered List (With Examples)
We use the HTML ordered list to define a list where the sequence or order of the list items is important.
๐ŸŒ
Ditig
ditig.com โ€บ setting-the-html-ordered-list-start-value
How to set the start value of an ordered list in HTML
February 25, 2025 - It can be set to any positive, zero, or negative value, and works even when the ordered list is nested within an unordered list. ... The start attribute in HTML is used with the <ol> (ordered list) element to specify the starting number for the list items.
๐ŸŒ
MDN Web Docs
developer.mozilla.org โ€บ en-US โ€บ docs โ€บ Web โ€บ HTML โ€บ Reference โ€บ Elements โ€บ li
<li>: The List Item element - HTML | MDN
November 7, 2025 - The <li> HTML element is used to represent an item in a list. It must be contained in a parent element: an ordered list (<ol>), an unordered list (<ul>), or a menu (<menu>). In menus and unordered lists, list items are usually displayed using bullet points.
๐ŸŒ
W3Schools
w3schools.com โ€บ tags โ€บ tag_ol.asp
HTML ol tag
The <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical. The <li> tag is used to define each list item. Tip: Use CSS to style lists. Tip: For unordered list, use the <ul> tag.
๐ŸŒ
Study.com
study.com โ€บ courses โ€บ computer science courses โ€บ introduction to html & css
List in HTML | Definition, Ordered & Unordered - Lesson | Study.com
September 26, 2021 - A list is just one of many ways of organizing information, and in HTML, there are three types of lists: ... Ordered and unordered lists are the most basic and common forms of lists, one being ordered by numbers or letters and the other by symbols, while the description list is a bit more complicated.
๐ŸŒ
Reddit
reddit.com โ€บ r/learnprogramming โ€บ what's the point in coding a list in html?
r/learnprogramming on Reddit: What's the point in coding a list in HTML?
January 3, 2023 -

There's the ordered <ol> and unordered list <ul>.
The ordered list adds a number before the text, such as:

  1. Germany

  2. France

  3. Romania

The unordered list just adds bullet points, such as:
โ€ข Germany
โ€ข France
โ€ข Romania

My question is: What's the point of them? Can't you just use a paragraph <p> and line breaks <br> to create your list? Without all the unnecessary <ol> <li> </li> </ol>?
I mean It's not that hard to just type in the "1. ; 2. ; 3." or copy paste a bullet point off the internet.

๐ŸŒ
Wikipedia
en.wikipedia.org โ€บ wiki โ€บ Ordered_list
Ordered list - Wikipedia
December 29, 2019 - an ordered list (HTML) a mathematical sequence ยท Category: Disambiguation pages ยท Search ยท Ordered list ยท