link within a page html code example
Example 1: link in html
<a href="https://example.com">Link text goes here</a>
Example 2: htlm link
<a href="https://www.google.com/">Visit googel.com!</a>
Example 3: link to external site html
<a href="https://www.example.com">This is a link</a>
Example 4: link to section on page html
<!-- #top is the ID of the div where u wanna link to -->
<a href="#top">Go back to the top!</a>
<div id="top"></div>