Greet Your Visitors
First Script
<script language=JavaScript> <!-- alert("Welcome to this page"); //--> </script>
Secound Script
<SCRIPT LANGUAGE="JavaScript"> <!-- Begin function testIt() { Response = ""; while ((Response == "") || (Response == "")){ Response=prompt ("What is you name?", ""); } if (Response != null) alert ("Oh, " + Response + " I remember you now, glad you came."); } // End --> </SCRIPT>
Paste this part in the BODY of your html.
<BODY onLoad="testIt()">
This will ask your visiter their name. An example is their for you. Of course you can edit the part in red.
|