Posts

Showing posts with the label dropdown menu

how to make a hover dropdown menu in html

Image
How to create a responsive hoverable dropdown menu in html and css. We will create a simple dropdown menu with html and css . When we move a mouse arrow on the button it will show  the menu. It is very easy Here is the Drop down menu Here is the source code:  <! DOCTYPE   html > < html > < head > < style > .dropbtn  {      background-color : #48d1cc;      color : white;      padding :  16px ;      font-size :  16px ;      border : none;      cursor : pointer; } .dropdown  {      position : relative;      display : inline-block; } .dropdown-content  {      display : none;      position : absolute;      background-color : #f9f9f9;      min-width ...