Scroll to a specific Element Using html
css, html
Solution
Yes you use this
<a href="#google"></a>
<div id="google"></div>
But this does not create a smooth scroll just so you know.
You can also add in your CSS
html {
scroll-behavior: smooth;
}
Problem
Is there a method in html which makes the webpage scroll to a specific Element using HTML !?