link inside button code example

Example 1: href on a button

<button onclick="window.location.href='/page2'">Continue</button>

Example 2: html button with link

<a href="https://www.google.com">
  <button>Go to Google</button>
</a>

Example 3: a link button

<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />

Example 4: button as href

<button onclick="location.href='http://www.example.com'" type="button">
         www.example.com</button>

Example 5: button href

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
}

Example 6: How to create an HTML button that acts like a link?

<button onclick="window.location.href='test.html'">Continue</button>

Tags:

Html Example