There are two types of lists: Unordered and Ordered.
An "Unordered List" command, <ul>, will set the start of a list that is indented two characters, with items started by a bullet. Like this
An "Ordered List" command, <ol>, will start the list indented one character, with each item numbered in order.
<li> This is the first item in my list
<lt> This is the second item in my list
Depending on the list type this results in either:
or:
In addition to using numbers to lead your lists, you can also use both upper and lower case letters.
If you want your "Ordered List" to be preceded by upper case "Alphabetic Characters" instead of numerals, define your list type like this <ol type="A">.
This results in a list looking like this:
If you want your list preceded by lower case letters, use a lower case "a" like this <ol type="a">.
This results in a list looking like this:
You must complete the list with the off switch </ul> for unordered lists or </ol> for ordered lists.
Defining the type of an "Unordered List" is done like this <ul type="disk">
This makes a list with the default round, filled in bullet looking like this:
Using a type like this <ul type="circle">.
This results in a list looking like this:
And finally, using a type like this <ul type="square">.
This results in a list looking like this:
This can get complex with using nested listings:
<ul>
<li>This is the first main item in my list
<li>This is a second main item in my list
<ul>
<li>This is the first sub-item in my list
<li>This is the second sub-item in my list
</ul>
</li>
<li>This is the third main item in my list
</ul>
Results in a "Nested List"
Oh my gosh. Eight years later and I am still learning from the HTML sandbox.
This should be mandatory reading for all FReepers.