Answers for "html button click scroll to div"

0

html button click scroll to div

<style>
  html {
    scroll-behavior: smooth;
  }
</style>

<body>
  <a href="#info">Read More</a>

  <div id="info">
  </div>
</body>
Posted by: Guest on May-04-2022

Browse Popular Code Answers by Language