I need to link a specific section of one of my webpage to the navigation bar so that I can directly go to it from any other webpage.
What code should I use so that I can link it.
Help me out, please
I need to link a specific section of one of my webpage to the navigation bar so that I can directly go to it from any other webpage.
What code should I use so that I can link it.
Help me out, please
give an id to the div you are trying to link to as such :
<div id = "gohere"></div>
and edit the navbar links as follows:
<a href="#gohere">
This will scroll to the div , if you want to show the scroll animation too, use :
body{
scroll-behaviour:smooth
}