Definition:
A bookmark link moves users from one section to another section on the same webpage.
Developers use bookmark links on large webpages so users can quickly jump to a specific section.
When a link jumps to another part of the same webpage, it is called a Bookmark Link.
Syntax:
<a href="#section1">Go to Section</a> <h1 id="section1">Section 1</h1>
Example:
<a href="#contact">Go to Contact Section</a> <h1 id="contact">Contact Section</h1>
