03.Is There Any Special Place to <script> Tag

by Aruna Sanjeewa

HTML

<!DOCTYPE html>
<html>
<head>
  <title>
    
  </title>
 </head>
<body>

<h2>03.Is There Any Special Place to script Tag</h2>
<p>Scripts are inside body<p>
<p id="demo"></p>

<script>
document.getElementById("demo").innerHTML = "My First JavaScript";
</script>

</body>
</html>