______________________________________________________________________________
HTML Markup tags


Main heading                        <h1>........Heading text.............</h1>
Section heading                     <h2>.................................</h2>
Subsection heading                  <h3>.................................</h3>
Paragraph heading                   <h4>.................................</h4>
etc.

New paragraph                       <p />
New Line break                      <br />

                (Note: HTML ignores extra spaces and separate lines in marked 
                up content. You need to use <br /> or <p /> to split your 
                content up into separate lines and paragraphs.


Bold                                <b>.........bold text.................</b>
Italic                              <i>.........italic text...............</i>


Hyperlink                           <a href="....URL...">....link text....</a>


Image           <img src="/img/filename.jpg" alt="caption for blind people" />
                 
                (where the image file is in a publicly-accessible /img/ folder 
                on your web site)


______________________________________________________________________________
Special characters

Non-breaking space                  &nbsp;

<                                   &lt;

>                                   &gt;

&                                   &amp;

copyright symbol                    &copy;
