same page link in html code example
Example 1: html links
<a href="url">link text</a>
Example 2: open link on same page html
<!-- Same Page: -->
<a href="google.com">Link</a>
<!-- Different Page: -->
<a href="google.com" target="_blank">Link</a>