How do I make my navbar sticky throughout the whole page?

(upload://2SDx8fmXEErnFcBc8dRJsO2Cr0.jpeg)




its really simple use css and select your navbar,

  1. give the navbar a class = “navbar” (example)
  2. create a .css file or create a tag.
  3. in the style tag write
    .navbar {
    position: fixed;
    top: 0;
    }
    to fix the navbar to the top of the page
1 Like