Basically, you use anchor tags in HTML to do your job. You are probably familiar with them, like:
<a href = " "> </a>
As an HTML convention, when defining a section, you can provide each section with an identifier for identifiers:
<section id= "blahblah" ></section>
And you can redirect to the section by simply specifying them in the anchor tags:
<a href = "#blahblah"> </a>
user3427559
source share