Navigation Menu1(tut23).html

 <!DOCTYPE html>

<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Navigation Menu</title>
    <style>
        .navbar{
            background-colorblack;
            border-radius30px;
        }
        .navbar ul{
            overflow:auto;
        }
        .navbar li{
            float:left;
            list-stylenone;  
            margin:13px 20px;
        }
        .navbar li a{
            padding:3px 3px;
            text-decorationnone;
            color:white;
        }
        .search{
            color:white ;
        }
    </style>
</head>

<body>
    <header>
        <nav class="navbar">
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#">About</a></li>
                <li><a href="#">Services</a></li>
                <li><a href="#">Contact Us</a></li>
                <div class="search">
                    This is search box
                </div>
            </ul>
        </nav>
    </header>
</body>

</html>

Comments

Popular posts from this blog

automation fitness center project synopsis

CSS : Position, absolute, relative ,fixed and sticky(tut25).html