Click to go to Home page

For Example:

<H1 ALIGN="right"&glt;This is the <H1>tag</H1><BR>

This is the <H1>tag aligned to the right


This is the <H2>tag aligned to the left


This is the <H3>tag aligned to the right


This is the <H4>tag aligned to the left


This is the <H5>tag aligned to the right

This is the <H6>tag aligned to the left

Ordered Lists

An orderered list is similar to an unordered list, except it uses <OL> instead of <UL>

<OL>
     <LI>Job
     <LI>Resume
     <LI>Experience
</OL>

The output is:

  1. Job
  2. Resume
  3. Experience

Unordered Lists

This list starts with an opening list <UL> tag and ends the list with a closing list </UL> tag.
For example:

<UL>
     <LI> Job
     <LI> Resume
     <LI> Experience
</UL>

DEFINITION LIST

<DL>
<DT> term </DT>
     <DD> definition </DD>
...

term

definition

A NESTED LIST:

For Example:

This is the code.

<UL>
   <LI>Beer/LI>
   <LI>Rum
      <UL>
      <LI>Malibu w/ Pineapple</LI>
      <LI>Bacardi Shot
         <UL>
         <LI>Puerto Rico</LI>
         <LI>Jamaica/LI>
         </UL>
      </LI>
      </UL>
   </LI>
   <LI>Tequilla</LI>
<UL>

A NESTED LIST: