This thing up here ^ is a list! You can make it with an <ul> or an <ol> tag an <ul> (means un-ordered list) tag makes the things dots and the <ol> (means ordered list) tag makes the thing numbers! and an list item with an <li> tag! Look under here will be a list with an <ol> tag!

  1. a
  2. b
  3. c

And you can do it with letters to! You do them in an <ol> tag and and add this line of code: list-style-type: lower-alpha;

  1. .
  2. -
  3. _

And for uppercase begin letters you just add the line: list-style-type: upper-alpha;

  1. .
  2. -
  3. _
Back home