HOW TO PLACE TABLE CODE INTO YOUR HTML WHEN USING BORDERED BACKGROUNDS...and other useful codes

The TABLE CODE goes after your TEXT COLOR tags.

<table width=85% align=right<tr><td>

Use the closing table tag and place before your closing BODY and HTML tags at end of page.

</td></tr></table>

ADDITIONAL USEFUL CODES

There are so many programs that are used to make web pages that using your own code is probably obsolete! Since I started out coding my own HTML I still like to do it.

<center> This is a CENTER tag

This text is centered

<align=left>This text is aligned left

To place a picture on your page the code would look like this:

<img src="nameofyourpicture.jpg">

To align a picture to the right use this tag:
<img src=nameofyourpicture.jpg" align=right>



This picture is centered

If you want to end a sentence use this tag <BR>
to go to another line.

To skip a line after the end of a sentence use this tag <P>

and you will have a space.

To use BOLD text do this:
<B> and remember to close the tag after you no longer want your text bold by using this: </B>

To make letters italic use an I instead of the B for the bold and you will get THIS

To make letters italic and bold, combine the two tags: <B><I> and you will get THIS

Remember, everything will stay bold or italic until you CLOSE the tag.

1