Un Ordered Lists
present a list of items in a format that shows
a bullet next to each item in the list. Take a
look at the following example:
- List Item 1
- List Item 2
- List Item 3
The code for this
is as follows:
<ul>
<li>List
Item 1</li>
<li>List
Item 2</li>
<li>List
Item 3</li>
</ul> |
You can indent paragraphs by using the <ul></ul>
tags. For instance the following paragraph will
be indented one level:
<p><ul>This
paragraph will be indented one level.</ul></p>
<p><ul><ul>This
paragraph will be indented two levels</ul></ul></p>
<p><ul><ul><ul>This
paragraph will be indented three levels</ul></ul></ul></p> |
The Unordered lists really do not have anything
to do with starting a paragraph, however it does
relate to indenting paragraphs or creating a bulleted
list (if no list item tags are used) so we have
placed this under this heading.
New
Paragraph
Line
Breaks
Unordered
Lists |