Answers for "html where should script tags go"

2

best place to include script in html layout

JavaScript in <head> or <body>
You can place any number of scripts in an HTML document. Scripts can be placed in the <body> , or in the <head> section of an HTML page, or in both.
Posted by: Guest on June-20-2020
1

html script tag

<script>
	// Put JavaScript inside here
</script>
<!-- OR -->
<script src="all-js/01001/015.js"></script>
Posted by: Guest on October-01-2020
-3

how to use script tag

<script>
 document.getElementById("id").innerText = ("");
</script>
Posted by: Guest on September-22-2020

Code answers related to "html where should script tags go"

Browse Popular Code Answers by Language