script html javascript code example

Example 1: script js

<script type="text/javascript" src="monscript.js"></script>

Example 2: 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 3: js script

<script src="javascript.js"></script>

Example 4: ajouter javascript dans html

<script type="text/javascript">
  // Mon code Javascript
  ...
</script>

Example 5: script tag in html

<script>
  // Write JS here
</script>

<script src="link/to/js/file.js"></script>

Example 6: html inline javascript

/*
There is no actual way to put javascript inside an HTML attribute
But there are some event attribute that can trigger JavaScript 
functions.
Otherwise you have to use <script> tag or external JavaScript
*/

Tags:

Html Example