link two pages in html code example
Example 1: how do i link two pages in html
<button onclick="location.href='filename.html'">
</button>
Example 2: html links
<a href="url">link text</a>
Example 3: a href to other site
<a href="https://examplesite.com" target="_blank" rel="noopener noreferrer">
Example Link
</a>