continue:   some other goodies
back:   tables
sample bullet list
sample of an ordered list with numbers
sample of an ordered list with roman numbers
sample of an ordered list with letters

Lists

lists and elements

HTML gives the possibility, to create a list of topics
Lists contain the head and the list itself.
To define lists and their elements, following tags are used :
<UL>with</UL> to define a bullet list (unordered list)
<OL>and</OL> to define a list with numbers (ordered List)
<LI>with or without</LI> to define the topic
following parameters can be used :
on <UL> : TYPE=circle topic marked with little circle
TYPE=square topic marked with little square
TYPE=disc topic marked with little disc
on <OL> : TYPE=I topic marked , and counted with roman numbers
TYPE=i topic marked , and counted with lowercase roman numbers
TYPE=A topic marked , and counted with uppercase letters
TYPE=a topic marked , and counted with lowercase letters
START= numbering starts with the value after =
on <LI> : VALUE= the numbering is skipped to the value after =

sample, bullet list


    <UL>this is a bullet list
        <LI>first topic in list
        <LI>next topic in list
        <LI>again topic, this time more of text
            <BR>and a new line
        <LI>again a topic
    </UL>
  It views like that :
    this is a bullet list
  • first topic in list
  • next topic in list
  • again topic, this time more of text
    and a new line
  • again a topic
  try it

sample of an ordered list with numbers


    <OL START=7>this is an ordered list with a start value
        <LI>first topic in list
        <LI>next topic in list
        <LI>again topic, this time more of text
            <BR>and a new line
        <LI>again a topic
    </OL>
  It views like that :
    this is an ordered list with a start value
  1. first topic in list
  2. next topic in list
  3. again topic, this time more of text
    and a new line
  4. again a topic

sample of an ordered list with roman numbers


    <OL TYPE=I>this is an ordered list with roman numbers
        <LI>first topic in list
        <LI>next topic in list
        <LI>again topic, this time more of text
            <BR>and a new line
        <LI>again a topic
    </OL>
  It views like that :
    this is an ordered list with roman numbers
  1. first topic in list
  2. next topic in list
  3. again topic, this time more of text
    and a new line
  4. again a topic

sample of an ordered list with letters


    <OL TYPE=A>this is an ordered list with letters
        <LI>first topic in list
        <LI>next topic in list
        <LI>again topic, this time more of text
            <BR>and a new line
        <LI>again a topic
    </OL>
  It views like that :
    this is an ordered list with letters
  1. first topic in list
  2. next topic in list
  3. again topic, this time more of text
    and a new line
  4. again a topic




sample bullet list
sample of an ordered list with numbers
sample of an ordered list with roman numbers
sample of an ordered list with letters
continue:   some other goodies
back:   tables