Linking JS files
<script src="file.js"></script>
Placement of <script> matters:
- put it in the
<head>to load immediately; - put in before the end of the
</body>to load at the end.
<script src="file.js"></script>
Placement of <script> matters:
<head> to load immediately;</body> to load at the end.