Navigation fixed side menu

Navigation fixed and side menu

Code html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Fixed Navigation Menu</title>
    <link rel="stylesheet" href="style.css">
    <meta name="viewport" content="width=device-width">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  </head>
  <body>
<div class="navbar">
<div class="logo">

</div>
<a class="btn">
<span></span>
<span></span>
<span></span>
</a>
<div class="menu">
  <a href="#">Home</a>
  <a href="#">About</a>
  <a href="#">Works</a>
  <a href="#">Contact</a>
</div>
</div>
<div class="header">

</div>
<p>
Hello.</p>
<p>
Hello</p>
<script type="text/javascript">

$(".btn").on("click",function(){
  $('.menu').toggleClass("show");
});

</script>
  </body>
</html>

Css:-
body{
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
}

.navbar{
  position: fixed;
  height: 80px;
  overflow: hidden;
  top: 0;
  display: flex;
  align-items: center;
  background: #f1f1f1;
  width: 100%;
}
.logo{
  background: url(logo.png) no-repeat 50% 50%;
  background-size: contain;
  width: 180px;
  height: 18px;
  float: left;
  margin-left:20px;
}
.menu{
  position: absolute;
  right: 20px;
}
.menu a{
  color: #333;
  text-decoration: none;
  font-weight: 700;
  margin-left: 20px;
  transition: color 0.3s;
  text-transform: uppercase;
}
.menu a:hover{
  color: #6ab04c;
}
.header{
  width: 100%;
  height: 600px;
  background: url(bg.png) no-repeat 50% 50%;
  background-size: cover;
  margin-top: 80px;
}
.btn{
  display: none;
  position: absolute;
  right: 20px;
}
.btn:hover > span{
  background: #6ab04c;
}
.btn span{
  display: block;
  margin: 6px;
  width: 40px;
  height: 3px;
  background: #333;
}
p{
  padding: 20px;
  font-size: 20px;
  text-align: justify;

}
@media only screen and (max-width : 600px) {
  .navbar{
    overflow: visible;
  }
  .menu{
    width: 100%;
    right: 0;
    top: 80px;
    background: #f1f1f1;
    overflow: hidden;
    max-height: 0;
  }
  .menu a{
    display: block;
    text-align: center;
    padding: 10px;
    margin: 0;
  }
  .btn{
    display: block;
    cursor: pointer;
  }
  .show{
    max-height: 500px;
  }
}

Comments