linking button to another html page code example

Example 1: html button with link

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

Example 2: add link behind a button in html

<!DOCTYPE html>
<html>
   <head>
      <title>Title of the document</title>
   </head>
   <body>
      <form>
         <input type="button" onclick="window.location.href = 'https://www.w3docs.com';" value="w3docs"/>
      </form>
   </body>
</html>

Example 3: button as href

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

Example 4: link in html

<a href="./Your/link/to/the/page">Your text</a>

Example 5: button html link to another page

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

    text-decoration: none;
    color: initial;
}

Tags:

Html Example