Using JavaScript
You can place the SCRIPT tag in the BODY tag of the HTML document. The script inside the BODY tag executes when the web page starts loading in a web browser.
Demo
Let’s create a document called ScriptInBody.html
Syntax
The syntax for placing snippet in the BODY section is
- <BODY>
- <SCRIPT type=”text/javascript”>
- Script code here.
- </SCRIPT>
- </BODY>
Write the script in BODY section
Execute the script by opening the file in the Web Browser. If you are using Internet Explorer click on “Allow Blocked Content” to allow the script to execute and you are using Mozilla Firefox then click on allow “ActiveX Controls”.
Thanks for reading this blog.