link javascript file to html code example
Example 1: how to link your js file to html
<script src="index.js"></script>
Example 2: link javascript to html
<script src="index.js"> </script>
Example 3: how to link js to html
<script src="Your-JavaScript-File.js"></script>
Example 4: how to link javascript to html
<script src = "index.js"></script>
Example 5: link js file to index.html
<script src="your js file"></script>
Example 6: link javascript file to html
<script type="text/javascript" src="path-to-javascript-file.js"></script>