Answers for "how to connect a button to another page in html"

20

href on a button

<button onclick="window.location.href='/page2'">Continue</button>
Posted by: Guest on June-08-2020
5

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>
Posted by: Guest on May-13-2020
0

button html link to another page

<a href="https://google.com" class="button">Go to Google</a>
Posted by: Guest on April-02-2021

Code answers related to "how to connect a button to another page in html"

Browse Popular Code Answers by Language