@page other html code example
Example 1: linking external pages html
<a href="https://www.w3schools.com/html/">Visit our HTML tutorial</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>