button element in html with link code example
Example 1: href on a button
<button onclick="window.location.href='/page2'">Continue</button>
Example 2: How to create an HTML button that acts like a link?
<button onclick="window.location.href='test.html'">Continue</button>