how to link another page to a button in html code example

Example 1: 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 2: how to add button to open a website using html

<button onclick="window.open('http://www.example.com')">
</button>

Example 3: button html link to another page

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

Example 4: html button with link

<form action="https://google.com">
    <input type="submit" value="Go to Google" />
</form>

Example 5: button as href

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