Coffee Luv Bug Design System

Top Navigation Bar

The navigation menu is used to display the primary navigation in the header of our application. It is used to move between pages in the application.

        
        <div class="topnav">
        <a href="#Link"><Navbar></a>
        <a href="#Link">Link</a>
        <a href="#Link">Link</a>
        <a href="#Link">Link</a>
        </div>      
        
        
        
           .topnav {
            background-color:#7a8f99;
            overflow: hidden;
            }
            
            .topnav a {
            float: left;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            font-size: 17px;
            }
            .topnav a:hover {
            color: #e3d2b0;
            }