How to link a section to navigation bar in bootstrap

Viewed 5210

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

1 Answers

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 :

optional

body{
scroll-behaviour:smooth
}
Related