HTML — Anchor Links (Page Jumping)
Anchor links let users jump to different sections of the same page using id
attributes and href=\"#idname\"
.
<a href=\"#contact\">Go to Contact Section</a>
...
<h2 id=\"contact\">Contact Us</h2>
<p>Here is our contact information.</p>