Navbar design same as another site

technical talkiess
0

 Navbar design :- 


<!DOCTYPE html>

<html lang="en">


<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Navbar design dublicate the bav</title>

</head>

<style>

    nav {

        display: flex;

        justify-content: center;

        flex-wrap: wrap;

    }


    .lobo {

        width: 60%;

    }


    .lobo img {

        width: 200px;

    }


    .navbar ul {

        display: flex;

        flex-direction: row;

        justify-content: center;

        flex-wrap: wrap;

    }


    .navbar ul li {

        list-style: none;

        padding: 12px;

        cursor: pointer;

    }


    .lang img {

        width: 20px;

        height: 20px;

        margin-top: 27px;

    }

</style>


<body>

    <header>

        <nav>

            <div class="lobo">

                <img src="12345.png"

                    alt="This is the logo here">

            </div>

            <div class="navbar">

                <ul>

                    <li>Products</li>

                    <li>Pricing</li>

                    <li>Resources</li>

                    <li>About</li>

                </ul>

            </div>

            <div class="lang">

                <img src="asdasdads.jpg"

                    alt="language the web">

            </div>

        </nav>

    </header>

</body>


</html>

Post a Comment

0Comments

Thanks you for commenting your questions. I will see question and respond you.

Post a Comment (0)