Basic Html Lists



I use list on my rules pages for the rules....makes it automatically go into sections. Several different kind but all look about the same the first is a numbered list, each item will be given a number. You use the tags <OL>(ordered list) and </0L>. Each item is then taged with  <LI> (list item). Also note you dont have to put <br> after each line.

Example:
  1. First thing on list
  2. Second thing on list
  3. Third thing on list

<OL>
<LI>First thing on list
<LI>Second thing on list
<LI>Third thing on list
</OL>

You can change the numbering scheme by putting a different type;
<OL TYPE=type>


TYPE 1 is standard numbers 1,2,3
TYPE a is Lowercase letters a,b,c
TYPE A is uppercase letters A,B,C
TYPE i is small roman numbers i,ii,iii TYPE I is large roman numbers I,II,III

Examples:

  1. Item One
  2. Item Two
  1. Item One
  2. Item Two
  1. Item One
  2. Item Two
  1. Item One
  2. Item Two
  1. Item One
  2. Item Two
<OL TYPE=1>
<LI>Item One
<LI>Item Two
</OL>
<OL TYPE=a>
<LI>Item One
<LI>Item Two
</OL>
<OL TYPE=A>
<LI>Item One
<LI>Item Two
</OL>
<OL TYPE=i>
<LI>Item One
<LI>Item Two
</OL>
</OL>
<OL TYPE=I>
<LI>Item One
<LI>Item Two
</OL>



Bulleted list have a small circle instead of a number or letter. the tags for this is:
<UL> and </UL>. You can also change the circle with either a disc or square by adding the type.

Examples:

  • Item One
  • Item Two
  • Item One
  • Item Two
  • Item One
  • Item Two

<UL TYPE=circle>
<LI>Item One
<LI>Item Two
</UL>
<UL TYPE=disc>
<LI>Item One
<LI>Item Two
</UL>
<UL TYPE=square>
<LI>Item One
<LI>Item Two
</UL>



The last list is the definition list. This is like a dictionary list, where there is a term and a definition. The tag for this is <DL> and end with <DL>. For the terms it is <DT> and the definition it is <DD>.

Examples:

TD Help Pages
Gives servals web pages to help set up tourneys.
TDs and Head TDs
Gives a page with list of current Tds and Head Tds
Cool Links
Give links to different things that will help with building pages

<DL>
<DT>TD Help Pages<DD>Gives servals web pages to help set up tourneys.
<DT>TDs and Head TDs<DD>Gives a page with list of current Tds and Head Tds
<DT>Cool Links<DD>Give links to different things that will help with building pages
</DL>



Now that you've mastered the basic sound tags on to other parts....below is links to different parts of html...just click on a link and it will take you there.

Text
Fonts
Sound
Lists
Images
Links
Tables
Basic Html