Mega Code Archive

 
Categories / JavaScript Tutorial / Language Basics
 

Use the script tag to incluse your javascript code

< html> <head> <title>Title of Document</title> <script> // All Your Javascript Code goes In Here Between the opening and closing script tags. </script> </head> <body> The content of your page here. </body> </html>