HTML Internal Anchor Links – Jump to Section Using id | Code Examples



 

An Internal Anchor Tag in HTML is a hyperlink that allows users to jump from one section of a webpage to another section on the same page. It is created using the <a> tag with the href attribute linked to an element’s id.

Example:

<a href="#contact">Go to Contact Section</a>

<h2 id="contact">Contact Us</h2>



Post a Comment

0 Comments