Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Navbar CSS Tutorial Navbar Design Using HTML and CSS with Source Code - Break Tutorial

Navbar CSS Tutorial Navbar Design Using HTML and CSS with Source Code - Break Tutorial


Today in this video I will show you how to make a Full Width Navbar Design Using HTML and CSS with source code, so les begin with Mohammad Nayeem
-------------------------------------


Navbar CSS Tutorial Navbar Design Using HTML and CSS with Source Code - Break Tutorial

❤️ Website Making Tutorial Using HTML and CSS Step by Step:
✔️ Step – 1 : Create index.html and style.css
✔️ Step – 2 : Open This folder Using any Text Editors
✔️ Step – 3 : Create HTML Doctype and Link Stylesheet
✔️ Step – 4 : Create Logo and Navbar
✔️ Step – 5 : Create Right Menu Using Flexbox
✔️ Step – 6 : Open index.html and Live View your HTML Website




❤️ [Note: I use Free Images from Pixels.com]

❤️ Have any Question Please Comment
❤️ Business information Please Tell me this Email:
👉 connectnayeem@outlook.com
-------------------------------------

► YouTube: https://www.youtube.com/channel/UC9ba...
► Facebook: https://facebook.com/Break-Design-107...
-------------------------------------
Source Code Download Link: 
https://drive.google.com/file/d/1RpsR...
-------------------------------------

Related Videos:
-------------------------------------
► Startuprr Website HTML Template Tutorial
👉 https://youtu.be/s5d_60PTaiw

► Full Width e-commerce Website Design Using HTML CSS with Source Code
👉 https://youtu.be/w18rmaYdiYM

Social Link:
Blog: https://breaktutorialcode.blogspot.com

Related Word:
Full Width e-commerce Website Design Using HTML CSS,
how to make a website using html and css in notepad++,
how to make a website using html and css step by step,
how to make a website using html and css website design in html and css,
how to make a website using html and css in sublime text,
how to make a website using html and css and javascript,
how to make a website using html and css step by step complete website resume cv design,
navbar css flexbox, flexbox navigation, create a Navbar Using HTML and CSS, Navbar Design HTML CSS
how to make a website using html and css and bootstrap

❤️ Thanks for Watching,
❤️ Please Give a Thumbs Up 

#Navbar #Menu #Navigation



Source Code

HTML Code
------------------------------

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Break Tutorial - Navbar Design Using HTML and CSS</title>
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        
        <header>
            <nav>
                <div class="logo">
                    <a href="index.html"><h2>BreakTutorial</h2></a>
                </div>
                <div class="main-menu">
                    <ul>
                        <li><a href="#">Home</a></li>
                        <li><a href="#">Portfolio</a></li>
                        <li><a href="#">Services</a></li>
                        <li><a href="#">About Us</a></li>
                        <li><a href="#">Contact</a></li>
                    </ul>
                </div>
                <div class="menu-btn">
                    <a class="login-btn" href="#">Log In</a>
                </div>
            </nav>
        </header>

    </body>
    </html>


CSS Code
---------------------



    /* Font Cdn  */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');


    *{
        margin0;
        padding0;
        box-sizingborder-box;
    }

    body{
        font-family: Poppins;
        background-color#dddddd;
    }

    header nav{
        background-color#000000;
        padding20px 50px;
        displayflex;
        justify-contentspace-between;
        align-itemscenter;
    }
    header nav .logo a{
        text-decorationnone;
        color#ffffff;
        transition0.3s all;
    }
    header nav .logo a:hover{
        color#b39f9f;
    }
    header nav .main-menu ul{
        list-style-typenone;
    }
    header nav .main-menu ul li{
        displayinline-block;
        padding0 10px;
    }
    header nav .main-menu ul li a{
        text-decorationnone;
        color#ffffff;
        transition0.3s all;
        font-size16px;
    }
    header nav .main-menu ul li a:hover{
        color#b39f9f;
    }
    header nav .menu-btn .login-btn{
        color#ffffff;
        background-color#5204fa;
        text-decorationnone;
        font-size16px;
        padding8px 15px;
        border-radius5px;
        transition0.3s all;
    }
    header nav .menu-btn .login-btn:hover{
        background-color#855cdd;
    }




Post a Comment

0 Comments