script tag in body code example
Example 1: insert js in html
<script src=¨script.js¨></script>
Example 2: when do i put my script in the body tags in html
<head>
<script></script> <!-- can go up here-->
</head>
<body>
<!-- better to go down here though-->
</body>