Skip to main content

Basic Navigation Bar using CSS

     



        Welcome to a tutorial on creating a basic navbar using CSS! In this video, we will go over the steps to create a simple navigation bar that you can use on your own website. We will cover the HTML structure of the navbar, as well as the CSS styles that give it its look and feel. By the end of this tutorial, you will have a solid understanding of how to create a navbar using CSS, and you will be able to customize it to fit your own unique style. Whether you're a beginner looking to learn the basics of web development, or a more experienced developer looking to brush up on your skills, this video is for you. So let's get started!



navbar.html

  <!DOCTYPE html>

    <html lang="en">
        <head>
            <meta charset="utf-8">
            <title>Navbar</title>
            <link rel="stylesheet" href="navbar.css">
            <link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One|Open+Sans" rel="stylesheet">
        </head>
        <header>
            <h1>CODE<span>INSTINCT</span></h1>
            <nav>
                <ul>
                    <li><a href="#">Home</a></li>
                    <li><a href="#">Portfolios</a></li>
                    <li><a href="#">About</a></li>
                    <li><a href="#">Contact Us</a></li>
                </ul>
            </nav>
        </header>
        <body>
            <img src="images/BasicNavbar.png">
        </body>
    </html>  
  

navbar.css


    body,html{
        margin: 0;
        padding: 0;
    }

    header{
        width: 100%;
        height: 70px;
        background-color: #282828;
    }

    h1{
        position: absolute;
        padding: 3px;
        float: left;
        margin-left: 2%;
        margin-top: 10px;
        font-family: 'Alfa Slab One', cursive;
        color: #39ca74;
    }

    span{
        color: #ffffff;
    }

    ul{
        width: auto;
        float: right;
        margin-top: 8px;
    }

    li{
        display: inline-block;
        padding: 15px 30px;
    }

    a{
        text-align: center;
        color: #ffffff;
        text-decoration: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.2vw;
    }

    a:hover{
        color: #F0c330;
        transition: 0.5s;
    }

    img{
        width: 100%;
        margin-top: -16px;
    }




Watch Full Video Tutorial Here:

 

Comments

Popular posts from this blog

Auto Image Slider using CSS Only

     Are you ready to learn how to create an image slider using only CSS? Look no further! In this tutorial, we'll walk you through the step-by-step process of building a sleek and modern image slider using HTML and CSS. No JavaScript required! In this tutorial We'll cover setting up the HTML structure for the slider.       This will include creating the container element and styling the slider with CSS. You'll also learn how to add transitions and animations to create a smooth sliding effect. By the end of this tutorial, you'll have a fully functional image slider that you can use on your own website. Whether you're a beginner or an experienced developer, this tutorial has something for you. So let's get started creating your own image slider using CSS today! index.html <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="css/style.css"...

Display Battery Status using HTML, CSS and Javascript

     Hey everyone, welcome to Code Instinct! In this tutorial, we're going to show you how to create a battery status indicator using HTML, CSS and Javascript. This is a great Javascript project for beginners who want to learn how to use the Battery API Javascript and create a battery level indicator. We'll also be showing you how to add a battery charging animation and CSS battery shape to make it more visually appealing.Our tutorial will cover all the steps needed to create your own battery status indicator with ease. You'll learn how to use the Battery API Javascript to get the current battery level of your device, and display it using HTML and CSS.       We'll also be covering the different types of battery indicators you can use and how to customize them to fit your website design. You'll learn how to create a battery charging animation using Javascript and CSS to give your battery status indicator a more dynamic look.At Code Instinct, we're dedi...

Glass Fill Effect using CSS Only

     In this tutorial, we will be creating a glass fill animation effect without using any SVG graphics or JavaScript. We will be using only CSS to create the animation. This animation is perfect for creating a liquid filling effect on a website. The tutorial is easy to follow and can be implemented on any website. So, if you're looking to add a cool animation effect to your website, this tutorial is for you. With this method, you can create a realistic looking glass fill animation effect without the need for any additional graphics or libraries.  index.html <html> <head> <title>TUTORIAL</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="glass-ctr"> <div class="glass"></div> <div class="water-ctr"> <div class="water"></div> ...