Email

HTML tips-

 

 

This section will cover basic html.

[Click here for a great tutorial to get you started]

Adding a graphic

Adding a link

Adding a sound

Meta Tags

Aligning images

 

 

Adding a graphic

To add a graphic to your site you need to put the following code on your page.

<IMG SRC="nameofimage">

NOTE: make sure you include the image's tag, like .gif or .jpg

that's all, now wasn't that easy?

 

Adding a link

Adding a link is very easy as well, just put the following code on your page.

<A HREF="http://www.site.com">textgoeshere</A>

 

Adding a sound

In backround:

NOTE: This goes in your HEAD tags.

<EMBED AUTOSTART=TRUE LOOP=INFINITE HEIGHT=0 WIDTH=0 SRC="name.wav">

Link to sound:

<A HREF="name.wav">click for music.</A>

 

Meta Tags

Some search engines look for meta tags. You will need to put these in your HEAD tags

there are two kinds of meta tags that I will show you

<KEYWORDS>

you will need to insert descriptive words that people might enter while searching for your site. You must seperate them by commas Example: <META NAME="KEYWORDS" CONTENT="graphic,picture,free etc.">

<DESCRIPTION>

This will show a description of your site. You will need to write a short description of you site. Example:<META NAME="DESCRIPTION" CONTENT="A great site to make easy money!">

 

Aligning images

You can align images to the left,right,top,bottom,and middle. To do this you will need to insert the following lines of code.

<IMG ALIGN=LEFT SRC="imagename">

This will align it to the left. You can align it to the right or any of the other ways above.