link to same page html code example
Example 1: how to add links in html
<a class="class" href="link" id="id">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>
Example 3: linking external pages html
<a href="https://www.w3schools.com/html/">Visit our HTML tutorial</a>