How we create a link between …
CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Sunita Sinha 6 years, 5 months ago
- 3 answers
Related Questions
Posted by Niharika ,Garg 1 year, 2 months ago
- 0 answers
Posted by Divyansh Yadav 1 year, 4 months ago
- 0 answers
Posted by Avani Tiwari 1 year, 2 months ago
- 0 answers
Posted by Anu Anu 1 year, 4 months ago
- 0 answers
Posted by Lavi Lalwani 1 year, 2 months ago
- 0 answers
Posted by Anshu Phogat 1 year, 2 months ago
- 1 answers
Posted by Abhijeet Kumar 1 year, 3 months ago
- 0 answers
Posted by Ashutosh Tiwari 1 year, 4 months ago
- 0 answers
Posted by Kishan Mishra 1 year, 5 months ago
- 0 answers
Posted by Anshika Agrawal 1 year, 6 months ago
- 2 answers
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Yogita Ingle 6 years, 5 months ago
To link two Web pages, you first need name to the section by using name attribute of <a> tag that you want to link. Suppose, we need to link a section of HTML1.html to HTML2.html. Create a named anchor in HTML1.html.
The syntax is given below:
<a name =”link”> Different Page </a>
After this, you have to write the code to refer to it, from Web page HTML2.html. Following is the code to do so:
<a href =”HTML1.html#link”>
Here, HTMLl.html is the name of html file to the section of which you want to link and # link is the segment name you want to link in that html file.
0Thank You