03.Is There Any Special Place to <script> Tag
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>