How to make link on current webpage to a specific spot on different webpage of the same website. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to make link on current webpage to a specific spot on different webpage of the same website.

I need to have a link from navigation bar to a specific spot on a different page(not different page but a specific point in it), but all I could find is as if you are on the same webpage. Please help me.

14th Apr 2023, 12:07 AM
Alexandr Ignatov
Alexandr Ignatov - avatar
1 Answer
+ 4
Use HTML Anchor link. Add an id to a section of a page, and then create a link that points to the page and id. On Home page. <a href="/page2.html#specific">specific spot</a> Other page <div id="specific">
14th Apr 2023, 2:02 AM
Chris Coder
Chris Coder - avatar