Computer Science, asked by ibrahimshariff6190, 1 year ago

How to include JavaScript in HTML Documents?

Answers

Answered by saranyaammu3
0

Answer:

you can add JavaScript code in an HTML document by employing the dedicated HTML tag <script> that wraps around JavaScript code.

The <script> tag can be placed in the <head> section of your HTML, in the <body> section, or after the </body> close tag, depending on when you want the JavaScript to load.

Generally, JavaScript code can go inside of the document <head> section in order to keep them contained and out of the main content of your HTML document.

However, if your script needs to run at a certain point within a page’s layout — like when using document.write to generate content — you should put it at the point where it should be called, usually within the <body> section.

Explanation:

Let’s consider the following blank HTML document with a browser title of Today's Date:

index.html

<!DOCTYPE html>

<html lang="en-US">

<head>

   <meta charset="UTF-8">

   <meta name="viewport" content="width=device-width, initial-scale=1">

   <title>Today's Date</title>

</head>

<body>

</body>

</html>

Right now, this file only contains HTML markup. Let’s say we would like to add the following JavaScript code to the document:

let d = new Date();

alert("Today's date is " + d);

This will enable the webpage to display an alert with the current date regardless of when the user loads the site.

In order to achieve this, we will add a <script> tag along with some JavaScript code into the HTML file.

To begin with, we’ll add the JavaScript code between the <head> tags, signalling the browser to run the JavaScript script before loading in the rest of the page. We can add the JavaScript below the <title> tags, for instance, as shown below:

index.html

<!DOCTYPE html>

<html lang="en-US">

<head>

   <meta charset="UTF-8">

   <meta name="viewport" content="width=device-width, initial-scale=1">

   <title>Today's Date</title>

   <script>

       let d = new Date();

       alert("Today's date is " + d);

   </script>

</head>

<body>

Once you load the page, you will receive an alert that will look similar to this:

</html>

Attachments:
Answered by premkumaryadav8434
0

Answer:

sorry I didn't know this answer

Explanation:

sorry I didn't know this answer

Similar questions