link html button to another page code example

Example 1: buton html href

<!-- if you are on Window : --> 
<button onclick="window.location.href='page2.html'">
  Button
</button>

<!-- if you are on linux or macOS : -->
<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;
}

Tags:

Html Example