how to go to another html page on clicking a button code example
Example 1: href on a button
<button onclick="window.location.href='/page2'">Continue</button>
Example 2: button with href
onClick={() => {window.location.href="https://www.golfballs.com/"}}