Guide To HTML

!!!!--Please substitute all ( ) with <>--!!!!

!--This is the basic form of an HTML document--!
(HTML) 
(HEAD) 
(TITLE) 
(/TITLE) 
(/HEAD) 
(BODY) 
main_part_of_document_goes_here 
(/BODY) 
(/HTML) 

NOTICE all () is closed with (/)

!-1ST-This is needed to start and HTML document--!

(HTML)

!-2ND-This is needed to place a title in the title bar at the top of the screen--!

(HEAD) (TITLE)Put your title here(/TITLE) (/HEAD)

!-3RD-This is needed to start the body of you web page--!

(BODY)

All of the parts of your page goes in the body, EX. txt, pics, links, animation ect


!--To insert text use Headers (H1),(H2),(H3),(H4),(H5),(H6) tags--!

(H1) Being the largest (H6) is the smallest
(H1)Level one header (/H1)
(H2)Level two header (/H2)
(H3)Level three header (/H3)
(H4)Level four header (/H4)
(H5)Level five header (/H5)
(H6)Level six header (/H6) 
Would look like this

Level one header

Level two header

Level three header

Level four header

Level five header
Level six header

!--To put your text in bold--!

(B)enter you text you want to be bold(/B)
Would look like this

enter you text you want to be bold


!--To put your text in italics--!

(I)enter you text you want to be italicised(/I)
Would look like this

enter you text you want to be italicised


!--To center you text, image, or link ext. do as follows--!

(CENTER)(H1)enter you text you want to be centered(/H1)(/CENTER)

!--This puts a picture into your web page--!

(IMG SRC="put_your_image_name_here.jpg")

!--This how you insert a herpertext link--!

(A HREF="www.Your_link_name.html")Your_link_name(/A)

!--Horizontal Lines--!

You can use the (HR) tage to insert a horizontal line in your web page. By adding SIZE=NUMBER, the thickness of the line can be controlled. The alignment can be controlled by adding ALIGN=LEFT/RIGHT/CENTER. The width of the line can be adjusted by adding WIDTH=PERCENT. A black line can be created by adding NOSHADE

EX. (hr size=10 align=left NOSHADE width=50%)
will produce



!-Bullet Lists-!

You can create bullet lists by using the (ul) tag. EX.
(ul)
(li)item one
(li)item two
(li)item three
(/ul)  
The list will look like this:

!--Numbered Lists--!

You can use the (ol) tag to make numbered lists. EX.
(ol)
(li)item one
(li)item two
(li)item three
(/ol)
The list will look like this:
  1. item one
  2. item two
  3. item three

!-Finaly-After all your material is in the body
you must close the body and close HTML as follows--!

(/BODY)
(/HTML)