HTML Links - Bookmarks are used to jump to specific parts of a web page.


Example

Use the id attribute to create a bookmark:

<div id="html-tutorial">HTML Tutorial</div> 

Create link to bookmark above div element

 <a href="#html-tutorial">HTML Tutorial</a>

you can see a live demo for a better understanding.