Ads

Accordion menu using HTMl/CSS

1th page 


 <!DOCTYPE html>

<html lang="en" dir="ltr">

  <head>

    <meta charset="utf-8">

    <title>PURCHASE BIKES</title>

    <link rel="stylesheet" href="style.css">

<style>

body

{

background-repeat:no-repeat;

background-attached: fixed;

background-size:cover;

background-image:url(er.jpg)

}

</style>

  </head>

  <body>

    <div class="middle">

      <div class="menu">

        <li class="item" id='profile'>

          <a href="#profile" class="btn"><i class="far fa-user"></i>Company Profile</a>

          <div class="smenu">

            <a href="#">Posts</a>

            <a href="#">Picture</a>

          </div>

        </li>


        <li class="item" id="messages">

          <a href="#messages" class="btn"><i class="far fa-envelope"></i>BUY BIKE</a>

          <div class="smenu">

            <a href="#">SHOW BIKE IMAGES</a>

            <a href="#">SELECT BIKE</a>

            <a href="#">BIKE DOCUMENTATION</a>

          </div>

        </li>


        <li class="item" id="settings">

          <a href="#settings" class="btn"><i class="fas fa-cog"></i>Settings</a>

          <div class="smenu">

            <a href="#">Password</a>

            <a href="#">Language</a>

          </div>

        </li>


        <li class="item">

          <a class="btn" href="#"><i class="fas fa-sign-out-alt"></i>Logout</a>

        </li>

      </div>

    </div>

  </body>

</html>

copy and save as name.html

2nd PAGE

*{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  list-style: none;
  text-decoration: none;
}

.middle{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.menu{
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
}
.item{
  border-top: 1px solid #2980b9;
  overflow: hidden;
}
.btn{
  display: block;
  padding: 16px 20px;
  background: #3498db;
  color: white;
  position: relative;
}
.btn:before{
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background:#3498db;
  left: 20px;
  bottom: -7px;
  transform: rotate(45deg);
}
.btn i{
  margin-right: 10px;
}
.smenu{
  background: #333;
  overflow: hidden;
  transition: max-height 0.3s;
  max-height: 0;
}
.smenu a{
  display: block;
  padding: 16px 26px;
  color: white;
  font-size: 14px;
  margin: 4px 0;
  position: relative;
}
.smenu a:before{
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background: #3498db;
  left: 0;
  top: 0;
  transition: 0.3s;
  opacity: 0;
}
.smenu a:hover:before{
  opacity: 1;
}
.item:target .smenu{
  max-height: 10em;
}

COPY AND SAVE AS NAME.CSS


IMAGE USED IN WEB PAGE


Post a Comment

0 Comments