link html button to another page code example
Example 1: buton html href
<button onclick="window.location.href='page2.html'">
Button
</button>
<button onclick="location.href='page2.html'">
Button
</button>
Example 2: button html link to another page
<a href="https://google.com" class="button">Go to Google</a>
Example 3: how to link a button to another page in css
<button onclick="window.location.href='/page2'">Continue</button>
Example 4: button href
a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
}