how to link a button in html to another page code example
Example 1: href on a button
<button onclick="window.location.href='/page2'">Continue</button>
Example 2: html button with link
<a href="https://www.google.com">
<button>Go to Google</button>
</a>
Example 3: button href
<a href="https://google.com" class="button">Go to Google</a> //*button link *//
Example 4: button html link to another page
<form action="https://google.com">
<input type="submit" value="Go to Google" />
</form>