InterviewSolution
Saved Bookmarks
| 1. |
John visited a website, it is found that when clicking on a particular text the browser open a new web page. Name the feature and Identify the tag used for this purpose. Write the HTML code to link to a le name “main.html”. |
|
Answer» 1. Hyper Linking : By clicking on hypertext we can see or go to other webpages or to other section of same document. 2.<A> tag is used 3. <Ahref="main.html">Main</A> |
|