Sherif Ezzat

1610638442

Glass Morphism Responsive Navigation Bar | Responsive Navbar HTML CSS | Navbar HTML CSS Flexbox

This video on Glass Morphism Responsive Navigation Bar | Responsive Navbar HTML CSS | Navbar HTML CSS Flexbox

Download Code From Here:
https://dee-coder.blogspot.com/

Subscribe :https://www.youtube.com/channel/UCc5bApIwqmu_exC9Kgy2eGA

#html #css

What is GEEK

Buddha Community

Glass Morphism Responsive Navigation Bar | Responsive Navbar HTML CSS | Navbar HTML CSS Flexbox
anita maity

anita maity

1618667723

Sidebar Menu Using Only HTML and CSS | Side Navigation Bar

how to create a Sidebar Menu using HTML and CSS only. Previously I have shared a Responsive Navigation Menu Bar using HTML & CSS only, now it’s time to create a Side Navigation Menu Bar that slides from the left or right side.

Demo

#sidebar menu using html css #side navigation menu html css #css side navigation menu bar #,pure css sidebar menu #side menu bar html css #side menu bar using html css

anita maity

anita maity

1621077133

Responsive Footer Design using HTML, CSS & Bootstrap

Hello Readers, welcome to my other blog, today in this blog I’m going to create a Responsive Footer by using HTML & CSS only. Earlier I have shared How to create a Responsive Navigation Menu and now it’s time to create a footer section.

As you can see on the image which is given on the webpage. There are various important topics there like About us, Our services and subscribes, some social media icons, and a contact section for easy connection. I want to tell you that it is fully responsive. Responsive means this program is fit in all screen devices like tablet, small screen laptop, or mobile devices.

Live Demo


#responsive footer html css template #footer design in html #simple footer html css code #simple responsive footer codepen #responsive footer code in html and css #responsive footer html css codepen

Brielle  Maggio

Brielle Maggio

1626687180

Create CSS Navbar for your website - 2 Website Navigation Bar using HTML and CSS Flexbox

In this video tutorial, we will be learning how to make 2 simple HTML CSS navbar or navigation bar menu for a website using CSS FLEXBOX.

We will explore how we can use flexbox to build and arrange web components and easily change their layout.

Please find the HTML and CSS files in my blog down below:
https://medium.com/@sameer8saini/navbar-using-html-and-css-tutorial-2-simple-navigation-menus-for-website-d88728f5626d

Thank you for watching and hope you enjoy my other videos as well.

#css navbar #css #navigation bar #html

Sherif Ezzat

1610638442

Glass Morphism Responsive Navigation Bar | Responsive Navbar HTML CSS | Navbar HTML CSS Flexbox

This video on Glass Morphism Responsive Navigation Bar | Responsive Navbar HTML CSS | Navbar HTML CSS Flexbox

Download Code From Here:
https://dee-coder.blogspot.com/

Subscribe :https://www.youtube.com/channel/UCc5bApIwqmu_exC9Kgy2eGA

#html #css

Nabunya  Jane

Nabunya Jane

1626527820

Create a Responsive Navigation Bar in HTML, CSS, and JS!

In this article, we will be creating a navigation bar that is completely responsive on desktop as well as on mobile devices.

Before starting let’s see the folder structure,

CSS

| — — styles.css

index.html

app.js

So now let’s get started,

First, let’s create a layout for our navigation bar,

So let’s first create an index.html file and start writing HTML code. In this, I will be using the font awesome icon for the hamburger menu and we have to add its link to include the icon in the script tag.

In this, I have also added some classes to tags so that we can add CSS to that element or tag later.

With the above code, our page will look like as shown below,

The layout of our HTML page

Now, let’s add CSS to our amazing navigation bar!

To add CSS we first have to include the stylesheet in our HTML file so that it will reflect on our website.

To do that we will just include the following line in the head tag,

Now in the styles.css file, we will finally be styling our navigation bar

After styling our website will be looking as shown below,

Navigation bar after adding CSS

Here, we can see that toggle icon in the navigation bar which should not be visible on bigger screens. To hide the icon we can use the display property to the navbar_toggle class and set it to none as shown below,

.navbar_toggle {

display: none;

}

Now we have to make it responsive on mobile devices. To do that we will be using media queries. So what are media queries?

It is a technique used in CSS to add CSS properties only if certain conditions are true.

Adding Media Queries

Here we will be adding media queries in,

@media only screen and (max-width : 992px){

}

This means the CSS property mentioned inside the media block will be applied only if the browser window is 992px or smaller.

In this, we hiding the main_nav class and added show_nav class which we will use to toggle the button to show the navigation menu using javascript.

In show_nav we will be making flex-direction to the column so that the menu items will be stacked one upon another.

So after adding media queries our navigation bar will be looking as shown below,

Now our work is almost done, we only have to add javascript to display the navigation menu.

First, let’s create an app.js file and add it to the script tag in the index.html file as shown below,

Now in the app.js, write the following code, here we select the navbar_toggle and main_nav class and add the event listener to it so that it will toggle when the toggle icon is being clicked.

If we clicked the toggle icon our page will be as shown below,

Navigation Bar in Mobile Devices

So this is how we can create a responsive navigation bar by adding media queries and little Javascript.

#css-flexbox #navigation-bar #javascript #html #js #css