how to link down the 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: link that scrolls down the page
<a href="#google"></a>
<div id="google"></div>