href open specific point of page code example
Example 1: go to id html
<a href="#sushi">Sushi</a>
<a href="#bbq">BBQ</a>
Sample section:
<div id='sushi'><a name='sushi'></a></div>
<div id='bbq'><a name='bbq'></a></div>
Example 2: go to a specific header in a website
<p>This is some content.</p>
<h2><a id="target">Some Header</a></h2>
<p>This is some more content.</p>
# You could use the link <a href="http://url.to.site/index.html#target">Link</a>