Posts

Showing posts with the label dropdown

How To Create Dropdown Menu with html and CSS.

Image
Here again another project "drop-down menu" Firstly....apply html <body>    <div class= "drop-bttn" >      <button class= "dropbttn" > DROP DOWN </button>     <div class= "drop-content" >       <a href= "#" > Home </a>       <a href= "#" > Service </a>       <a href= "#" > Contact </a>       <a href= "#" > Policy </a>     </div>    </div> </body> Then apply CSS which is the final stage <style>       .drop-content {               display:none;               position: absolute;            ...