how to make a button in html that take you to another page code example
Example 1: href on a button
<button onclick="window.location.href='/page2'">Continue</button>
Example 2: how to add button to open a website using html
<button onclick="window.open('http://www.example.com')">
</button>