html create a button to a url code example
Example 1: html button with href
<form method="get" action="/page2">
<button type="submit">Continue</button>
</form>
Example 2: How to create an HTML button that acts like a link?
<button onclick="window.location.href='test.html'">Continue</button>