
|
<SCRIPT> var Name = prompt("What is your name", "Frank Peter");alert("Welcome " + Name + "\nto my \nHome Page!"); document.write('<IMG SRC="images/welcome.gif"><P>'); // the gif names are all in lower
so we need to ensure that the name is in lower case for (i = 0; i < Name.length;
i++) { // if the
character is a space call the Char space because that happens to be the
gif's name // write out
each character one at a time </SCRIPT> |