Back to Scripts page
Click in the box below, select all and copy to grab the script
<HTML> <HEAD> <TITLE>Image Test</TITLE> <SCRIPT LANGUAGE=JAVASCRIPT> <!-- Hide script from old browsers // This script copyright 1997, Tom Negrino and Dori Smith. // This script is from "JavaScript for the WWW, Visual QuickStart Guide, 2nd Ed." // For more information, see <http://www.chalcedony.com/javascript/>. // This script may be used and modified, but the copyright notice must remain intact. var bGrounds = new Array("red","white","blue") var thisBG = 0 var bgColorCount = 3 function rotateBG() { if (document.images) { thisBG++ if (thisBG == bgColorCount) { thisBG = 0 } document.bgColor=bGrounds[thisBG] setTimeout("rotateBG()", 3 * 1000) } } // End hiding script from old browsers --> </SCRIPT> <HEAD> <BODY BGCOLOR="RED" onload="rotateBG()"> <P> <CENTER><H1>Welcome to Steve's<BR> Wacko Internet Conspiracy Page!</H1> </CENTER> <P><H3>Have you ever felt that people out there were out to get you? Well, we feel that way too, and we think we know why they're out to get you, too. Assassinations, secret world-government takeovers, crop circles, frogs falling from the sky, black helicopters... we've got the REAL story behind them all.</H3></P> <CENTER><H1>The truth is in here. Somewhere.</H1> </CENTER> </BODY> </HTML>