HTML | <script> src Attribute
The HTML <script> src Attribute is used to specify the URL of external JavaScript file. The External JavaScript file is used to run on the same script on several pages on a website. We can save the JavaScript file with an extension of .js. We can refer the external script using the src attribute of the <script> element.
Syntax:
<script src="URL">
Attribute Values: It contains single value URL which specifies the URL of the external JavaScript file. There are two types of URL link which are listed below:
- Absolute URL: It points to another webpage.
- Relative URL: It points to other files of the same web page.
Below example illustrates the <script> src attribute in HTML:
Example:
<!DOCTYPE html> < html > < head > < title > HTML script src Attribute </ title > </ head > < body style = "text-align:center;" > < h1 > GeeksForGeeks </ h1 > < h2 > HTML script src Attribute </ h2 > < script id = "myGeeks" type = "text/javascript" src = "my_script.js" > </ script > < br > < button >Submit</ button > </ body > </ html > |
Output :
Supported Browsers: The browser supported by HTML <script> src attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Safari
- Opera
Recommended Posts:
- HTML | low Attribute
- HTML | <img> alt Attribute
- HTML src attribute
- HTML | alt attribute
- HTML | <li> value Attribute
- HTML | value Attribute
- HTML | min Attribute
- HTML | <bdo> dir Attribute
- HTML | <a> rel Attribute
- HTML | <img> src Attribute
- HTML | for Attribute
- HTML | name Attribute
- HTML | <map> name Attribute
- HTML | dir Attribute
- HTML | max attribute
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : shubham_singh