Home | Previous | Next Introduction to the Web And HTML

Some Important HTML Elements

<h2>List Elements</h2>

<P>There are several styles of list. Here 
are some examples the margins,
<OL>
  <LI>An ordered list of items
  <LI>Another item
  <UL>
    <LI>An unordered list within
      an ordered list. Lists can
      in general be nested.
  </UL>
  <LI>And yet more numbered items
</OL>
<P><B>There are also description lists:</b>
<DL>
<DT>Frogs
  <DD>Small, slimy amphibians, commonly
      used to frighten elementary school
      girls in movies from the 50s and 60s.
  <DT>Godzilla
  <DD>You mean you don't know who 
      Godzilla is???? Godzilla is:
  <UL>
      <LI>The Mother of all Monsters
      <LI>A great Japanese Monster movie
  </UL>
</DT>

List Elements

There are several styles of list. Here are some examples the margins,

  1. An ordered list of items
  2. Another item
    • An unordered list within an ordered list. Lists can in general be nested.
  3. And yet more numbered items

There are also description lists:

Frogs
Small, slimy amphibians, commonly used to frighten elementary school girls in movies from the 50s and 60s.
Godzilla
You mean you don't know who Godzilla is???? Godzilla is:
  • The Mother of all Monsters
  • A great Japanese Monster movie




Home | Previous | Next Introduction to the Web And HTML