<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Navbar Fixed to Bottom</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> <style> /* Custom CSS to prevent the content to go underneath the navbar */ body{ padding-bottom: 70px; } </style> </head> <body> <div class="m-4"> <nav class="navbar fixed-bottom navbar-expand-lg navbar-dark bg-dark"> <div class="container-fluid"> <a href="#" class="navbar-brand">Menus</a> <button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarCollapse"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarCollapse"> <div class="navbar-nav"> <a href="#" class="nav-item nav-link active">Home</a> <a href="#" class="nav-item nav-link">Profile</a> <a href="#" class="nav-item nav-link">Messages</a> <a href="#" class="nav-item nav-link disabled" tabindex="-1">Reports</a> </div> <div class="navbar-nav ms-auto"> <a href="#" class="nav-item nav-link">Login</a> </div> </div> </div> </nav> <!-- Demo Content --> <div class="container"> <div class="p-5 mb-4 bg-light rounded-3"> <h1>Fixed Bottom Navbar</h1> <p class="lead">The fixed-bottom navbar bar does not scroll with the rest of the page; it is fixed at the bottom of the viewport./p> </div> <p> Create a responsive navigation headers for the website or applications using the Bootstrap navbar components. When a user clicks the toggle button, the responsive navbar expands on devices with narrow viewports such mobile phones. On medium and large devices, like a laptops or desktops, it will be horizontally as usual. With a lot less work, you may also construct numerous navbar versions, like navbars with drop-down menus and search boxes and navbars that are fixed in place. You may learn how to make a straightforward static navbar with links for navigation by using the illustration below.The Bootstrap navbar components will be used to construct responsive navigation headers that are static and fixed in place in this article.In addition, you may use your logo picture in the navbar rather than just plain text. To correctly fit the logo within the navbar, you must manually set the symbol length as illustrated here:Create a responsive navigation headers for the website or applications using the Bootstrap navbar components. When a user clicks the toggle button, the responsive navbar expands on devices with narrow viewports such mobile phones. On medium and large devices, like a laptops or desktops, it will be horizontally as usual. With a lot less work, you may also construct numerous navbar versions, like navbars with drop-down menus and search boxes and navbars that are fixed in place. You may learn how to make a straightforward static navbar with links for navigation by using the illustration below.Create a responsive navigation headers for the website or applications using the Bootstrap navbar components. When a user clicks the toggle button, the responsive navbar expands on devices with narrow viewports such mobile phones. On medium and large devices, like a laptops or desktops, it will be horizontally as usual. With a lot less work, you may also construct numerous navbar versions, like navbars with drop-down menus and search boxes and navbars that are fixed in place. You may learn how to make a straightforward static navbar with links for navigation by using the illustration below.The Bootstrap navbar components will be used to construct responsive navigation headers that are static and fixed in place in this article.</p> <p> Create a responsive navigation headers for the website or applications using the Bootstrap navbar components. When a user clicks the toggle button, the responsive navbar expands on devices with narrow viewports such mobile phones. On medium and large devices, like a laptops or desktops, it will be horizontally as usual. With a lot less work, you may also construct numerous navbar versions, like navbars with drop-down menus and search boxes and navbars that are fixed in place. You may learn how to make a straightforward static navbar with links for navigation by using the illustration below.The Bootstrap navbar components will be used to construct responsive navigation headers that are static and fixed in place in this article.In addition, you may use your logo picture in the navbar rather than just plain text. To correctly fit the logo within the navbar, you must manually set the symbol length as illustrated here:Create a responsive navigation headers for the website or applications using the Bootstrap navbar components. When a user clicks the toggle button, the responsive navbar expands on devices with narrow viewports such mobile phones. On medium and large devices, like a laptops or desktops, it will be horizontally as usual. With a lot less work, you may also construct numerous navbar versions, like navbars with drop-down menus and search boxes and navbars that are fixed in place. You may learn how to make a straightforward static navbar with links for navigation by using the illustration below.Create a responsive navigation headers for the website or applications using the Bootstrap navbar components. When a user clicks the toggle button, the responsive navbar expands on devices with narrow viewports such mobile phones. On medium and large devices, like a laptops or desktops, it will be horizontally as usual. With a lot less work, you may also construct numerous navbar versions, like navbars with drop-down menus and search boxes and navbars that are fixed in place. You may learn how to make a straightforward static navbar with links for navigation by using the illustration below.The Bootstrap navbar components will be used to construct responsive navigation headers that are static and fixed in place in this article.</p> </div> </div> </body> </html>