A
Q. The script tag must be placed in
- Correct Answer - Option(B)
- Views: 8
- Filed under category JavaScript
- Hashtags:
A
In HTML, the <script> tag can be placed in both the <head> and <body> sections:
In the <head> section:
In the <body> section:
In both <head> and <body>:
Incorrect options:
<body>
<script>
console.log("Script in body");
</script>
</body>
<head>
<script>
console.log("Script in head");
</script>
</head>
You must be Logged in to update hint/solution
Be the first to start discuss.
Discusssion
Login to discuss.