ex10_1.html 274 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <html> <head> <script type="text/javascript"> document.write ("<h1>Hello World!</h1>"); function message(){ alert ("Bomb!"); } </script> </head> <body onload="message()"> <script type="text/javascript" src="js/ex10_1.js"></script> </body> </html>