Site hosted by Angelfire.com: Build your free website today!
MY HTML HELP FOR
BEGINNERS

Is it me or am I seeing spots?? Look you already know I'm weired, *Shrugs*..It's who I am! get used to it!..*GRINS*

'Lists'

Lists ar prety simple, you can have bullited lists or numbered lists (These are also known as 'Unordered' and 'Ordered'), like this:

  • First point
  • Second point
  • Third point

OR

  1. First point
  2. Second point
  3. Third point

The Code I typed for this is as follows:
<ul>
<li>
First point</li>
<li>
Second point</li>
<li>
Third point</li>
</ul><p>

OR

<ol>
<li>
First point</li>
<li>
Second point</li>
<li>
Third point</li>
</ol><p>

MAIN INDEX