how to link to a specific tag in html code example
Example 1: link in html
<a href="https://example.com">Link text goes here</a>
Example 2: 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>