Ordered Lists
To make numbered lists, just use the following code:
<ol>
<li> First Statement
<li> Second Statement
<li> Third Statement
<li> Fourth Statement
</ol>
This will give you something that looks like this:
When your page is split up, ie. you need a paragraph in between lists to explain something important, you can resume your list again. For example, I stopped at the 2rd list and want to resume from the 4th list, I would use the following:
<ol start="4">
<li> Fourth Statement
<li> Fifth Statement
<li> Sixth Statement
<li> Seventh Statement
</ol>
Which looks like:
<ol type="I">
<li> First Statement
<li> Second Statement
<li> Third Statement
<li> Fourth Statement
</ol>
Or maybe place it in alphabetical order? This is good for quizzes and stuff.
<ol type="A">
<li> First Statement
<li> Second Statement
<li> Third Statement
<li> Fourth Statement
</ol>
Unordered Lists
A normal unordered list just uses the following code:
<ul>
<li> First Statement
<li> Second Statement
<li> Third Statement
<li> Fourth Statement
</ul>
And it looks like this:
<ul type="circle">
<li> First Statement
<li> Second Statement
<li> Third Statement
<li> Fourth Statement
</ul>
<ul type="square">
<li> First Statement
<li> Second Statement
<li> Third Statement
<li> Fourth Statement
</ul>
This is the extent that HTML will change your lists. If you want to make bullet points into various images, you can use the following code:
<ul style="list-style-image: url('your_file.gif')">
<li>First</li>
<li>Seond</li>
<li>Third</li>
<li>Fourth</li>
</ul>
Do note that your lists will need to be closed and that your bullet point images will need to be small in order to remain a proper bullet point.
Combinations
You can put ordered lists and unordered lists together like so: