My friend made this javascript, and I need to know what is wrong with it before my lesson ends, in about 30 min. Thanks. <html> <head> <title>Assignment one!!!</title> </head> <body> <SCRIPT LANGUAGE = JavaScript> document.write("<B>G'day Mate!</B>"); document.write("<I>What Are you doing at this present moment in time?</i>"); document.write("<U> I <i> know</i> your reading this! Wow I must be telepathic!</u>"); document.write("<marquee>TELEPATHIC<Blink>TELEPATHIC</blink></marquee>"); document.write("<fontsize="72"><marquee><blink><I><U><B>TELEPATHIC</B></U></I></BLINK></MARQUEE>"); </script> </html> Code (markup):
well, i would have looked into it but it seems that you are about 12 hours too late on your deadline. sorry bud. and just from glancing at it... the blink tags are what is wrong with it! what's more fun than a barrel full of blink elements? a barrel full of marqueeing blink elements!
<html> <head> <title>Assignment one!!!</title> </head> <body> <script type="text/JavaScript"> document.write("<B>G'day Mate!</B>"); document.write("<I>What Are you doing at this present moment in time?</i>"); document.write("<U> I <i> know</i> your reading this! Wow I must be telepathic!</u>"); document.write("<marquee>TELEPATHIC<Blink>TELEPATHIC</blink></marquee>"); document.write("<fontsize=\"72\"><marquee><blink><I><U><B>TELEPATHIC</B></U></I></BLINK></MARQUEE>"); </script> </body> </html> HTML: