All the codes here have an extra * at the beginning
and end that you will have to remove to make it work right
To add text you can simple just write your message and have it small and
simple or you can learn some simple HTML codes to make look a little diffrent
the basic text code is .....
<*font face="arial" size="+2" color="red">TEXT HERE<*/font>
SEE HOW DIFFERENT
simple replace the text and have it looking like this
notice the parts that have quotation marks around them "".
these are the sections you can edit.here are some example ......
the FACE tag is the font of the text.....
Arial
Courier
Modern
System
--------------------------------------------------------------------------------
Both colour and size work the same ......
Red
Blue
white
Green
+4
+3
+2
+1
1
2
-------------------------------------------------------------------------------
These codes are layed out a little diffrent , you need to adjust size inside the code itself.
This code will make text glow
<*div style="filter: glow(Color=#0000FF,Strength=6); width:200";>TEXT HERE<*/div>
TEXT HERE
EXAMPLE
--------------------------------------------------------------------------------
This code will make text blur
<*span style="width: 150; height: 50; font-size: 20px; font-family: verdana; color: #ff00cc; filter: shadow(color=#00ff00, direction=200)">TEXT HERE<*/span>
TEXT HERE
--------------------------------------------------------------------------------
This code will make text shaddow
<*span style="width: 150; height: 50; font-size: 20px; font-family: verdana; color: #ff00cc; filter: dropshadow(Color=#00ff00, OffX=2, OffY=2, positive=2)">TEXT HERE<*/span>
TEXT HERE
--------------------------------------------------------------------------------
This code will make text fade
<*span style="width: 150; height: 50; font-size: 20px; font-family: verdana; color: #ffffff; filter: alpha(opacity=100, finishopacity=0, style=1, startX=0, startY=0, finishX=200, finishY=0)">TEXT HERE<*/span>
TEXT HERE
For most of these codes you can change the color# and width to your own choice.
--------------------------------------------------------------------------------
This code will make text move
<*marquee>TEXT HERE<*/marquee>
Here are some other moving text effects
<*marquee behavior=scroll direction="right">TEXT HERE<*/marquee>
<*marquee behavior="alternate">TEXT HERE<*/marquee>
<*marquee behavior="alternate" bgcolor="blue" width="400">TEXT HERE<*/marquee>
Also if you wish to adjust which way it slides edit the behavior tag. The behavior tag
is the word inbetween the " " such as alternate, or up or down.