marquee mean rotation


 Scrolling text

                     Help for Creating Scrolling Text
The HTML tag for creating scrolling text is marquee
<marquee> Your Text Here </marquee>

Direction can be reversed
<marquee direction=right> Your Text Here </marquee>

Can be made to bounce back and forwards
  <marquee behavior=alternate> Your Text Here </marquee>

Speed can be controlled ~ Scrolldelay = 500The default is 85 ~ scrolldelay = 1000scrolldelay = 2000
<marquee scrolldelay=xxx> Your Text Here </marquee>

Scroll amount can also be controlled ~ Scrollamount = 12The default is 6 ~ scrollamount = 18scrollamount = 24
<marquee scrollamount=xxx> Your Text Here </marquee>

The background colour can be changed<marquee bgcolor=a_colour> Your Text Here </marquee>

You can include linkz
marquee> <a href="url_goes_here" mce_href="url_goes_here" >Description</a> </marquee>

The marquee tag only works with Internet explorer, while the blink tag only works with Netscape. You can combine the two, so users of each browser see something different.
<marquee><blink>
Your text here
</blink></marquee> 


Text scroll up<marquee direction=up loop=true height="100" >
Your text here
</marquee>


Text scroll Down
<marquee direction=down loop=true height="20" >
Your text here
</marquee>