Hello World In JavaScript

  1. <html>  
  2.   
  3. <body>  
  4.     <script type="text/javascript">  
  5.         document.write("Hello World!");  
  6.     </script>  
  7. </body>  
  8.   
  9. </html>