What is the correct way to link to an external JavaScript file in HTML?

Disable ads (and more) with a premium pass for a one time $4.99 payment

Boost your HTML and CSS skills with our Certification Test. Practice with multiple-choice questions and comprehensively designed quizzes. Prepare thoroughly for your certification exam with detailed explanations and insights!

Linking to an external JavaScript file in HTML is achieved using the <script> element with the src attribute. This is the standard and correct method for including an external JavaScript file into an HTML document. When using this tag, the browser knows to fetch and execute the JavaScript file specified by the src attribute.

Using <script src="script.js"></script> correctly sets the path to the JavaScript file, allowing it to be loaded into the HTML page. This enables you to separate your JavaScript code from your HTML, promoting cleaner code structure and easier maintenance.

The other methods used in the question are not suitable for linking to JavaScript. The first option incorrectly uses the href attribute, which is meant for the <link> tag typically used for stylesheets. The second option uses the <link> tag with incorrect attributes; <link> is used for including stylesheets rather than scripts. The last option, <import>, is not a valid HTML tag for including JavaScript. Therefore, the right method is the one that correctly utilizes the <script> tag with the src attribute.

Subscribe

Get the latest from Examzify

You can unsubscribe at any time. Read our privacy policy