Using the <script> Element to Link External Files
Examples
Basic usage
These examples show how to import (an external) script using the <script>
element.
<script src="javascript.js"></script>
And the following examples show how to put (an inline) script inside the <script> element.
<script> alert("Hello World!"); </script>