button href url code example
Example 1: button verlinken html
<a href="#"> <button>Mein Button</button></a>
Example 2: href on a button
<button onclick="window.location.href='/page2'">Continue</button>
Example 3: href in button
<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />
Example 4: html button with href
<form method="get" action="/page2">
<button type="submit">Continue</button>
</form>