same html for website code example
Example 1: link in html
<a href="https://example.com">Link text goes here</a>
Example 2: html add page to document
<nav>
<ul>
<li><a href="myPage.html">Main Page</a></li> <!-- Add a link to a website. -->
<li><a href="myOtherPage.html">Other Page</a></li> <!-- Add a link to another website. -->
</ul>
</nav>