how to read html file head js code example
Example 1: how to add script in html head
<script src="script.js" defer></script>
<!--just add defer attribute so script will execute at last-->
Example 2: include javascript in html
<script>
// JS Here
</script>