0

I'm trying to make website where when you click on a button on the home page it takes you down to a specific part of the page.

The home page has three buttons in the same div (length conversion, weight conversion, more) by clicking on the button"length conversion" it'll take you to the part where you convert the length (km-m etc)

  • Hi, I think this answer's your query https://stackoverflow.com/questions/24739126/scroll-to-a-specific-element-using-html – Yash Maheshwari May 27 '21 at 04:23
  • 1
    Does this answer your question? [Scroll to a specific Element Using html](https://stackoverflow.com/questions/24739126/scroll-to-a-specific-element-using-html) – dale landry May 27 '21 at 04:24

1 Answers1

1

add ids to the div where you want go. then in Button use <a href="id of your div"> then it'll scroll to the specific part when you click on the button

Abhay
  • 101
  • 2
  • 7