html link to same page code example
Example 1: a href to other site
<a href="https://examplesite.com" target="_blank" rel="noopener noreferrer">
Example Link
</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>