Marquee With Text Links
This script is a scrolling marquee with text links.
Highlight and copy/paste into the <body> tag
<html> <head> <title>Scrolling Marquee with text links</title> <script language="JavaScript"> <!-- Begin function writeMarquee() { document.write("<marquee scrolldelay='250' scrollamount='20'>This ordinary marquee has <a href='http://www.bravenet.com'>* * l i n k s * *</a> that you can click on. <a href='http://bravenet.com'>Go get some free web tools!</a>. Use HTML formating: <b>bold</b>, <i>italic</i>, <u>etc.</u>. Speed and delay also adjustable.</marquee>"); } // End --> </script> </head> <body> <div align="center"> <table width="30%"><tr><td> <script language="JavaScript"> <!-- Begin writeMarquee() // End --> </script> </td></tr></table> </div> </body> </html>