
Look at the bottom-left hand side of your screen. See all those words scrolling across. That is a Scrolling banner. It is fun for beginner pages, but more advanced pages should put a Form Banner on their page. Unlike to Form Banner, the Scrolling Banner text may only be put on one line.
The source...
<SCRIPT LANGUAGE="JavaScript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var x = 0
var y = 0
var z = 140
var delay = 70
var text = " This is the Scrolling Banner. "
+"It is part of my collection of Javascript. "
+"If you want to make more lines to put your message on, copy this line, "
+"and be sure to not continue on with the script by pressing enter."
while (y ++ < z) {
text =" " + text
}
function scroller() {
window.status =text.substring(x++, text.length);
if (x == text.length) {
x =0;
}
setTimeout("scroller()", delay);
}
scroller();
//-->
</SCRIPT>