DEV Community

Cover image for Responsive Navbar using HTML, CSS, and Javascript
Amrin
Amrin

Posted on • Edited on

110 19 1 1 1

Responsive Navbar using HTML, CSS, and Javascript

For every CSS project we build, a responsive navigation bar is a must-have.

So, today we are going to build a responsive navigation bar using HTML CSS and vanilla javascript.

Note: It's a Mobile-First design

If you prefer video. I also created a video. You can watch it here

Let's get started 🎉🎉

Part 1: 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" />
    <link rel="stylesheet" href="styles.css" />
    <title>responsive navbar</title>
  </head>
  <body>
    <header>
      <nav class="nav">
        <a href="/" class="logo">logo</a>

        <div class="hamburger">
          <span class="line"></span>
          <span class="line"></span>
          <span class="line"></span>
        </div>

        <div class="nav__link hide">
          <a href="#">home</a>
          <a href="#">about</a>
          <a href="#">contact</a>
          <a href="#">blog</a>
        </div>
      </nav>
    </header>
  </body>

  <script src="./script.js"></script>
</html>


Enter fullscreen mode Exit fullscreen mode

Above we got our navbar's markup with a hamburger.

I linked the CSS and javascript files too.

Let's see how we can style this markup with CSS

Part: 2 CSS



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
}

a {
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}


Enter fullscreen mode Exit fullscreen mode

Here, we removed some of the default styles and added some styles to the a tag.



/* nav styles */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.logo {
  font-size: 1.8rem;
  color: rgb(5, 5, 116);
  padding-left: 20px;
}

.hamburger {
  padding-right: 20px;
  cursor: pointer;
}

.hamburger .line {
  display: block;
  width: 40px;
  height: 5px;
  margin-bottom: 10px;
  background-color: black;
}

.nav__link {
  position: fixed;
  width: 94%;
  top: 5rem;
  left: 18px;
  background-color: lightblue;
}

.nav__link a {
  display: block;
  text-align: center;
  padding: 10px 0;
}

.nav__link a:hover {
  background-color: lightcoral;
}

.hide {
  display: none;
}


Enter fullscreen mode Exit fullscreen mode

This is the main design. Here we styled our navbar the hamburger and the logo.

The mobile design is done.

screencapture-127-0-0-1-5500-index-html-2021-12-14-21_54_51.png

We are going to look at the desktop design now.



@media screen and (min-width: 600px) {
  .nav__link {
    display: block;
    position: static;
    width: auto;
    margin-right: 20px;
    background: none;
  }

  .nav__link a {
    display: inline-block;
    padding: 15px 20px;
  }

  .hamburger {
    display: none;
  }
}


Enter fullscreen mode Exit fullscreen mode

In the desktop design, we removed the absolute position and made it a display block.
And to the nav__link's we added display inline-block so that the links stay's next to each other.
Lastly, added display none to the .hamburger

screencapture-127-0-0-1-5500-index-html-2021-12-14-21_59_21.png

One last thing is left. Now we need to make our hamburger clickable.

Part 3 : Javascript



const hamburger = document.querySelector('.hamburger');
const navLink = document.querySelector('.nav__link');

hamburger.addEventListener('click', () => {
  navLink.classList.toggle('hide');
});



Enter fullscreen mode Exit fullscreen mode

Here we added a click event to the hamburger and added the classList.toggle to the navLink.

What the classList.toggle does is, it removes the class if the given class is available and add's if it's not available.

source code: https://github.com/Coderamrin/responsive-navbar-css-js

Live preview: https://coderamrin.github.io/responsive-navbar-css-js/

Conclusion

Thanks for reading.

If you liked it don't forget to follow me @coderamrin

also, I've started a YouTube channel where I share programming tutorials and videos. If that sounds great check it out: https://www.youtube.com/channel/UCiHUi4wJ6rkPSQ5n4bxKU1A

Have a good one :D

Image of Timescale

🚀 pgai Vectorizer: SQLAlchemy and LiteLLM Make Vector Search Simple

We built pgai Vectorizer to simplify embedding management for AI applications—without needing a separate database or complex infrastructure. Since launch, developers have created over 3,000 vectorizers on Timescale Cloud, with many more self-hosted.

Read full post →

Top comments (17)

Collapse
 
thejourneyville profile image
benny

Thanks for this useful post! I was wondering how to setup a hamburger menu, I'll use this as a guideline. Btw I noticed a type-o:

And to the nav__link's we added display inline-block so that the links say next to each other.

Have a good one Amrin :)

Collapse
 
coderamrin profile image
Amrin

thank's for pointing it out benny :D

Collapse
 
guscarpim profile image
Gustavo Scarpim

Nice NavBar, I suggest you change your link in github is incorrect and your website.

Good job!

Collapse
 
coderamrin profile image
Amrin

thanks Gustavo.
it works now

Collapse
 
brads profile image
Bradley Oliver

naw, still broken

Thread Thread
 
coderamrin profile image
Amrin

It works for me. I don't know what's causing this

github.com/Coderamrin/responsive-n...
coderamrin.github.io/responsive-na...

Thread Thread
 
guscarpim profile image
Gustavo Scarpim

Me too

Collapse
 
tleperou profile image
Thomas Lepérou
Comment hidden by post author
Collapse
 
raibtoffoletto profile image
Raí B. Toffoletto

I think for better a11y would be better to use a button for the hamburger and a ul/li for the navigation items. 😉 But nice work 🎉

Collapse
 
coderamrin profile image
Amrin

Thanks Rai.
I'm learning web accesibility :D
will do for the next projects.

Collapse
 
raibtoffoletto profile image
Raí B. Toffoletto

A hreat writer here on DEV is inhuofficial .
His articles have been helping me to rethink a lot of a11y. Go check him out.

Thread Thread
 
coderamrin profile image
Amrin

Thanks Rai

Thread Thread
 
grahamthedev profile image
GrahamTheDev

Aww I am blushing, thanks for the mention! ❤️

Collapse
 
raibtoffoletto profile image
Raí B. Toffoletto

A hreat writer here on DEV is @inhuofficial .
His articles have been helping me to rethink a lot of a11y. Go check him out.

Collapse
 
codesushil profile image
Code With Sushil

Nice

Collapse
 
coderamrin profile image
Amrin

thanks Sushil

Collapse
 
leticiacareli profile image
leticiacareli

Thanks!

Some comments have been hidden by the post's author - find out more