Navigation

It is way that helps users or visitors to find content that they want to see. It is simply a way of navigating pages, content and information on website using internet.

Navigation Bar

Navigation bar contains all the main actions to be performed on the website and should be visible on all pages.

                    
                        <header class="navbar">
                            <div class="logo">
                                <a href="../index.html">Gimesto</a>
                            </div>
                            <div class="search-cont">
                                <input class="input" type="email" placeholder="Search" />
                            </div>
                            <nav class="nav-links">
                                <a><i class="bi bi-shop-window"></i><span>Shop</span></a>
                                <a><i class="bi bi-heart"></i><span>Wishlist</span></a>
                                <a><i class="bi bi-cart3"></i><span>Cart</span></a>
                                <button class="btn btn-primary">Login</button>
                                <button class="nav-menu"><i class="bi bi-list"></i></button>
                            </nav>
                        </header>