It's a marquee.
Code:
<marquee direction="up" scrolldelay="200" onMouseOver="this.stop();" onMouseOut="this.start();">YOUR TEXT HERE</marquee>
You can control the direction with the "direction" attribute, the speed with the "scrolldelay' attribute, and "onMouseOver" and "onMouseOut" are for when you hold the mouse over it, it stops. You can remove those two attributes if you don't want that.
|