button tag link to another page code example
Example 1: button html link to another page
<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />
Example 2: how to link a button to another page in css
<button onclick="window.location.href='/page2'">Continue</button>