LISTS
There are two basic kinds of lists, ordered and unordered. An ordered list will appeared numbered, or in some other way sequential. An unordered list will simply appear with bullets.An ordered list will begin and end with the tags <ol> and </ol>. Each item in the list will then begin and end with <li> and </li>.
For example, a list about adjectives describing fish sticks would appear so:
<ol>
<li>Crunchy</li>
<li>Crackly</li>
<li>Fishy</li>
<li>Happy</li>
</ol>
An unordered list would be written nearly the same, substituting <ol> with <ul>.
<ul>
<li>Crunchy</li>
<li>Crackly</li>
<li>Fishy</li>
<li>Happy</li>
</ul>
The ordered and unordered lists would then look like this.
Aside from making simple lists as we know them, lists in html can also be used to make navigation menus and organize other blocks of information.