How to make javascript code example

Example 1: how to use javascript in html

<!-- include an external javascript document -->
<script src="myJavaScript.js" charset="utf-8"></script>

<!-- JavaScript inside html element -->
<script>
  console.log("This is JavaScript");
</script>

Example 2: how to create js code

<!--just open a file with the ending of ".js"
example:  myFirstJS.js

an other option is to write this sentence on HTML document:
-->

<script type="text/javascript">
//write here your code
</script>

Example 3: javascript tutorial

<html>
   <body>   
      <script language = "javascript" type = "text/javascript">
         <!--
            document.write("Hello World!")
         //-->
      </script>      
   </body>
</html>

Example 4: javascript javascript javascript javascript javascript

javascript javascript javascript javascript javascript javascript!

Tags:

Html Example