Html tutorial


When writing a web page the first thing to know is that the browser needs to know that you are posting a html document. This is done by beginning the file with <HTML >. Next in the line of duty is to title your page. This is done by typing in directly under the <HTML > code <HEAD > <TITLE > Name of your page here </TITLE >. Then after you have made your title you need the body of your page. This is established by the <BODY > command. At the end of your file you are going to have to close off the <BODY > command as well as the <HTML > command which is done by placing in the last two lines of your file </BODY > next then </HTML >. The body command has some variable options to it that allows you to set the overall text color and link color as well as the back ground color or place a back ground image. It would appear as this:
<BODY BGCOLOR=SOME COLOR BACKGROUND=SOME IMAGE LINK TEXT=SOME COLOR LINK=SOME COLOR ALINK=SOME COLOR VLINK=SOME COLOR > *NOTE: some color can either be the hexidecimal number (RGB) of a color or it maybe one of the named colors.
Next you will need to actually build your web page with the text, images and links that you wish to post.

First off you need to know that these commands can be combined to give color changes along with say size changes and other decorations to the same text. Just place all opening codes before the desired text and then the closing counter part at the end of the desired text.

Example:
<CENTER ><H1 ><FONT COLOR=RED > Your Text Here</CENTER ></H1 ></FONT >

Breaks: Color:

Font face:

Bold:
Italic:
Underline:

Center:

Blink:

Font size:

Header:

Subscript:

Superscript:

Images:

Link (text link):

Link (image link):

Link (email address):

List (bullet):

List (numbered):


Here is an example of what a basic page would look like:
<HTML >
<HEAD >
<TITLE > Your page title here </TITLE >
</HEAD >
<BODY BGCOLOR=BLACK TEXT=RED LINK=BLUE ALINK=YELLOW VLINK=GREEN >
Your Text,links and images that you wish to display would be placed in this area.
</BODY >
</HTML >


[Main Page | Email Me ]

Sign My GuestBook

1