script tag js code example

Example 1: include script in html

<script type="text/javascript" src="/path/to/script.js"></script>

Example 2: script js

<script type="text/javascript" src="monscript.js"></script>

Example 3: js script

<script src="javascript.js"></script>

Example 4: js script

<script src="javascript.js"></script>

Example 5: html script tag

<script>
	// Put JavaScript inside here
</script>
<!-- OR -->
<script src="all-js/01001/015.js"></script>

Example 6: what is the use of script tag in html

<script>
  //Insert JS scripts here
  var html
  html = "You can use the <script> tag to incorporate JS code into your HTML code"
  console.log(html)
</script>

Tags:

Html Example