html go to a tag code example
Example 1: hyperlink html
<a href="url">link text</a>
Example 2: link that scrolls down the page
<a href="#google"></a>
<div id="google"></div>
<a href="url">link text</a>
<a href="#google"></a>
<div id="google"></div>