Answers for "button go to page"

20

href on a button

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

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 navigate to page

<button onclick="window.location.href = 'index.html'"> Navigate </button>
<!-- Replace 'index.html' with the name of the page to navigate to, or a URL. -->
Posted by: Guest on January-14-2021
1

html button click url

# Wrap whole button in a 'a' tag.
 <a href="https://google.com" class="button"><button class="pixel">Button text</button></a>
Posted by: Guest on October-25-2020
0

html button click go to section

<html>
  <a href="#down">Click Here to Smoothly Scroll Down</a>
  <div id="down">
    <h1>You are down!</h1>
  </div>
</html
Posted by: Guest on August-31-2021

Code answers related to "button go to page"

Browse Popular Code Answers by Language