HTML Basics:

---------------- HTML Code / Tag / Script: --------------------------------- Result / Outcome / What you see on the page:

<b> whatever text in here </b>

All text in between the tags is BOLD

<u> whatever text in here </u>

All text in between is UNDERLINED

<i> whatever text in here </i>

All text in between is in ITALICS

<center> whatever text in here </center>

All text in between is CENTERED on the page.

<font size="+1" face="timesnewroman" color="blue">

</font>

Changes all text in between to - size (-4 to +4); face (need to know correct font name) color (any you can think of) that you specify.

&nbsp;

Inserts one horizontal space - in between characters.

<a href=http://www.websites-host.com> DISPLAY THIS</a>

Creates a link to the URL specified and displays the last part - "DISPLAY THIS" -- everything before the -- </a>

<a href=" http://www.addme.com " target="_blank">

Adding ( target="_blank" ) causes a new window to open when this Link is clicked.

<!-- comments in here, such as a description of, or welcome to your site - making good use of your keywords -- >

Nothing is displayed on the page.