how to use script tag js code example
Example 1: script src tag in html
<script type="text/javascript"
src="file.js">
</script>
Example 2: script tag in html
<script>
// Write JS here
</script>
<script src="link/to/js/file.js"></script>