InterviewSolution
Saved Bookmarks
| 1. |
One of the main advantage of using src attribute is ____________(a) It becomes self-cached(b) It makes the HTML file modular(c) It restricts manipulation in the HTML file(d) It simplifies the HTML files |
|
Answer» Right option is (d) It simplifies the HTML files Explanation: The main advantage of using the src attribute is that it simplifies your HTML files by allowing you to remove large blocks of JavaScript code from them. Hence separate files for css and javascript files are made to make the code modular and readable. |
|