Well, Lets Get Started! Well the best place to start is to try these codes in your Webtv Email or Text editor of your homepage.

***IMPORTANT***
Please Remember When Entering Codes
To get The Look And Sound You Want.
Only One Set Of HTML Tags Are Needed.
<html> At The Top Of Your Code
And </html> At The End Of Your Code.
Put Your Images, Text And Sound Codes In Between These Two HTML Tags.
Please Practice These Lessons In Your Signature Box

Text Size And Color:
(Note: You will only see the codes in your signature box or text editor, they are not visible on the finished page ) Dumb statement but people ask!
<html>
<font size="+2"><font color="red">
This Is How it should look!!!!!

</font>
</html>


You Can Use This With Different colors and sizes within the same document to get colored and sized text
<html>
<font size="+2"><font color="red">
Add your text here
</font>


<font size="+3"><font color="green">
Or change your text
</font>
<font size"+4"><font color="blue">
and Text colors !!
</font>
</html>


You Can Replace The Font Numbers With -2, -1, +0, +1 up to +7


These Are The Tags For:
Bold: <b> and </b>
Italics: <i> and </i>
Underline: <u> and </u>
Typewritter: <tt> and </tt>
(note: You Can Use These Tags Together Or By Themselves)
<html>
<font size="+2"><fontcolor="red">
<b>
<i>
<u>
<tt>

So now you have bold italic underlined typewritten text!!!!

</b>
</i>
</u>
</tt>
</font>
</html>


Background Colors:
These Are The Tags For Changing Your Background Colors
<body bgcolor="Any Color"> and </body>
NOTE: when using body tags try to keep them at the top of your codes so they will load first!!!
<html>
<body bgcolor="white">

<font size="+2"><font color="red">
<b>
<i>

Wow is this great or what ?

</b>
</i>
</font>
</body>
</html>


Line Breaks: There Are Two Types Of Line Breaks.
One Is To Break The Text To The Next Line.
The Other Is To Add a Blank Line Between Things.
(note: These Are Single Tags, There Is No Closing Tag (</#>) Needed.
They Are Used At The End Of A Line Of Text Or Code Text Line Break: <br>
Blank Line Break: <p>
these first two lines
are without the breaks!

and these two lines<br>

are with the breaks !<p>



Adding An Image:
Here Is The Tag For Adding An Image
<img src="http:// "The Image URL Here ">
And Your Image appears like this


<img src= "https://members.tripod.com/~rlssmitty/rlss.jpg">




If You Would Like Re-size Your Image. Add The Height, Width and Border Codes

<img src= "https://members.tripod.com/~rlssmitty/rlss.jpg" height=75 width=100 border=10">



You Can Play With The Numbers To Get the effect you like


Alignment:
Here Are The Tags To Center Align:
<center> and </center>
This is how it should look centered on the page !
<html>
<center>
<img src= "https://members.tripod.com/~rlssmitty/rlss.jpg" height=75 width=150 border=10">
</center>
</html>





OR TO ALIGN THE IMAGE TO THE RIGHT OF YOUR SCREEN

This is how it should align to the right on the page !


<html>
<img src= "https://members.tripod.com/~rlssmitty/rlss.jpg" height=75 width=150 border=10 align= "right"> </html>












Note: the align="right" tag and align="left" tag are placed within the image address, after the last quote mark at the end of the image address. The center tags are place on either side of an image or text to center it.


Sound: There are Two Ways To Put Background Sounds On Your E-Mails or Homepage. With Either Of These Codes
<bgsound src= "https://members.tripod.com/~rlssmitty/midi/voyager2.mid">



<embed src= "https://members.tripod.com/~rlssmitty/midi/voyager2.mid" autostart="true">



To Have Your Sound Play Over And Over You Can "loop" The Sound By Adding loop="infinite" To Either Of These Codes.


<bgsound src= "https://members.tripod.com/~rlssmitty/midi/voyager2.mid" loop="infinite">



<embed src= "https://members.tripod.com/~rlssmitty/midi/voyager2.mid"autostart="true" loop="infinite">


NOTE:The loop="infinite" will not work for RAMS



Background: Remember when using the body tags that it is best to put it at the top of your codes so they load first


"<body background= "http://Your Background URL Here">
Close With This Tag </body>
Right Before </html>.



Scrolling Text:
<marquee>
Put your text you want to scrool here
</marquee>
This is the scrolling text


You can change the font size and colors also
<font size="+3"><font color="orange"> <marquee>This is the scrolling text</marquee></font>
This is the scrolling text


Clickable Link With An Image:
<a href="http://The Address You Wish To Link To"><img src="http://Address of Image"></a>

NOTE: make sure that you get the </a>at the end of the code or everything that follows your code will become part of the link




Text As A Clickable Link:
<a href="http://The Address You Wish To Link To">YOUR TEXT LINK</a>

And It Should Look Like This

YOUR TEXT HERE


[ BACK ] [ HOME ]