when do i put my script in the body tags in html

Solutions on MaxInterview for when do i put my script in the body tags in html by the best coders in the world

showing results for - "when do i put my script in the body tags in html"
Giovanna
22 Jun 2019
1<head>
2  <script></script> <!-- can go up here-->
3</head>
4<body>
5  <!-- better to go down here though-->
6</body>