Categories: Uncategorized

Dropdown Menu with Sub menu Using HTML and CSS only

Learn How to Create Navigation bar with Dropdown’s and Sub Menus Using HTML and CSS only

       

Result :

Navbar with dropdowns and Sub menu

<!DOCTYPE html>
<html>
<head>
 <title>Navbar</title>
<style type="text/css">
 
 *{
 padding: 0px;
 margin: 0px;
}
body{
 font-family: arial;
}
nav{
 background-color: #005ece;
 border-bottom: 5px solid #a9a9a9;
}
ul{
 list-style: none;

}
nav ul li{
 display: inline-block;
 position: relative;
 padding: 10px;
}
li:hover{
 background-color: #07438a;
 color: white;
 border: 1px solid black;
 padding: 9px;
}
nav ul li ul {
 display: none;
 position: absolute;
 background-color: #a9a9a9;
 margin: 10px;
 left: -5px;
  border: 1px solid black;
}
nav ul li ul li{
 width: 200px;
}
nav ul li:hover ul{
 display: block;
}
nav ul li ul li ul{
 left: 210px;
 top:-3px;
}

nav ul li ul li ul li {
 display: none;
}
nav ul li ul li:hover ul li{
 display: block;
}
</style>

</head>
<body>

<nav>
 
 <ul>
<li>HOME</li>
<li>DrowpDowns
<ul>
<li>DropDown 1</li>
<li>DropDown 2</li>
<li>DropDown 3 with sub menu


<ul>
<li>Sub Menu</li>
<li>Sub Menu</li>
<li>Sub Menu</li>
<li>Sub Menu</li>
<li>Sub Menu</li>
</ul>
</li>
<li>DropDown 4</li>
<li>DropDown 5</li>
<li>DropDown with sub menu

<ul>
<li>Sub Menu</li>
<li>Sub Menu</li>
<li>Sub Menu</li>
<li>Sub Menu</li>
<li>Sub Menu</li>
</ul>
</li>
</ul>
</li>
<li>Feed</li>
<li>About us</li>
</ul>
</nav>

</body>
</html>

reecry

Recent Posts

Insta360 – Videos keep exporting backwards | Wrong side render in insta360

https://youtu.be/0RRUOIvmuWA I realized that I had my camera set up incorrectly, so when I upload…

9 months ago

Make Animated progress step bar using Figma

https://youtu.be/C3oFfV20K_c Make Animated progress step bar using Figma

11 months ago

How to Hide All Grids in Figma

https://youtu.be/o3pSH_oRzko How to Hide All Grids in Figma

11 months ago

How to Create Responsive Tool tip in figma

https://youtu.be/hdSUylKSsho How to Create Responsive Tool tip in Figma

11 months ago

Pixel Grid not visible in figma | How to Turn on figma Pixel Grid

https://youtu.be/AEiH7dSDhKo Having issue in figma pixel grid? learn how to show/ hide figma pixel grid…

11 months ago

Fix External Monitor Lag on Mac OS Ventura

https://youtu.be/iilYzHg9LwQ There are some issues going on in ventura OS its still in development phase…

2 years ago