body script tag code example
Example 1: include javascript in html
<script>
// JS Here
</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>