Bookmark Links
Bookmark links (also called anchor links or fragment links) navigate to a specific section within the same page or another page. They use the #id syntax in the href attribute to jump to any element that has a matching id attribute.
Creating and Linking to Anchors
First, add a unique id to the target element. Then create a link with href="#that-id". You can also link to a section on another page by combining the URL with the fragment: href="page.html#section-id". A "Back to top" link using href="#" scrolls to the very top of the page.