Answers for "how to navigate by button on click html"

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
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 "how to navigate by button on click html"

Browse Popular Code Answers by Language