Navbar
Navbars arrange the brand and navigation links horizontally. There are dark (default) and light (navbar-light) themes.
Live demo
Dark (default)
Light (.navbar-light)
Code
<nav class="navbar">
<span class="navbar-brand">Brand</span>
<ul class="navbar-nav">
<li><a class="nav-link active" href="#">Home</a></li>
<li><a class="nav-link" href="#">Features</a></li>
</ul>
</nav>
Tip: combine with .sticky-top and custom page styles for a fixed header.