Scrolling text across the screen Scrolling text or images even are called 'Marquees'. the tag for this is....
<marquee> </marquee>
If you just add the above, the text or image will go from right to left by default. To change the direction you need to tell the marquee what to do, this will be the HTML for this...
<marquee direction="left">your text goes here</marquee>
You'll notice that there is another tag at the end of each peice of html, this is the close tag, you have to use this to tell the program you finished with this particular html entry.