html anchor to another part of page code example
Example 1: link to section on page html
<!-- #top is the ID of the div where u wanna link to -->
<a href="#top">Go back to the top!</a>
<div id="top"></div>
Example 2: how to add an html anchor
<h2 id="Lorem_Ipsum">Lorem Ipsum</h2> <!--The anchor-->
<a href="#Lorem_Ipsum">top</a> <!--Linking to the anchor-->