Lists
There are a few different kinds of lists. Two simple ones are:
- Numbered lists: <ol> and
</ol>
- Bulleted lists: <ul>
and </ul>
Each item in those lists must have a <li>
before it.
Putting an item in those lists makes it indented, and puts a number
or bullet next to it.
Numbered lists
<ol>
<li>First item
<li>Second item
<li>Third item
</ol>
|
- First item
- Second item
- Third item
|
Bulleted lists
<ul>
<li>First item
<li>Second item
<li>Third item
</ul>
|
- First item
- Second item
- Third item
|
[Table of Contents]
[More HTML]
[Next Page]
[Previous Page]
© 1996-2008 Suzanne Cook