Make a dropdown menu with CSS - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Menu Dropdown

Description

Make a dropdown menu with CSS

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <style type="text/css">

</style> <!--from  www.  j a v a 2  s. c om-->
 </head> 
 <body> 
  <div class="wrapper"> 
   <header> 
    <nav> 
     <ul> 
      <li> <h1>MemeStagram</h1> </li> 
      <li> <a href="index.php" title="Home">Home</a> </li> 
      <li> <a href="memes.php" title="Memes">Memes</a> 
       <ul> 
        <li> <a href="most-popular.php" title="Most Popular">Most Popular</a> </li> 
        <br> 
        <li> <a href="newest.php" title="Newest">Newest</a> </li> 
        <li> <a href="most-viewed.php" title="Most Viewed">Most Viewed</a> </li> 
       </ul> </li> 
      <li> <a href="about.php" title="About Us">About Us</a> </li> 
      <li> <a href="contact.php" target="Contact">Contact</a> 
       <ul> 
        <li> <a href="bebin.php" title="Bebin">Bebin</a> </li> 
        <li> <a href="balbin.php" title="Balbin">Balbin</a> </li> 
        <li> <a href="bohan.php" title="Bohan">Bohan</a> </li> 
        <li> <a href="barcus.php" title="Barcus">Barcus</a> </li> 
        <li> <a href="bonis.php" title="Bonis">Bonis</a> </li> 
       </ul> </li> 
      <li> <a href="settings.php" title="Settings">Settings</a> </li> 
      <li class="login"> <img src="https://www.java2s.com/style/demo/Firefox.png" alt="Login/Logout"> <a href="logout.php" title="logout"> <button type="submit">Logout</button> </a> </li> 
     </ul> 
    </nav> 
   </header> 
  </div>  
 </body>
</html>

Related Tutorials