top of page

<html>
<style>
/* The sidebar menu */
.sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 15%; /* Set the width of the sidebar */
    position: Fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; /* Stay on top */
    top: 30px; /* Stay at the top */
    left: 0;
    background-color: #111; /* Black */
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 20px;
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 10px;
    color: #818181;
    display: Block;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  /* Style page content */
  .MoboTitle {
    margin-left: 0px; /* Same as the width of the sidebar */
    padding: 0px 1px;
background-color: #111 ;
width : 100%;
Height :25px;
Color : #FFFFFF;
Position : Responsive;
  }
.main {
    margin-Left:15%; /* Same as the width of the sidebar */
    padding: 0px 10px;
    Height:100%;
    background-color:#FFFFFF;
    Position:fixed;
overflow-x: Auto; 
overflow-y: auto; 
}
.Login {
    margin-Top:5px; /* Same as the width of the sidebar */
    padding: 0px 10px;
    background-color:#111;
    color :#FFFFFF;
    Position :fixed;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
<body bgcolor=#111>
 <div class="MoboTitle">
    <h5>Dashboard</h5>
  </div>
 <div class="Login">
    <h4>Login</h4>
  </div>
 <div class="main">
   
  </div>
<div class="sidenav">
    <a href="#">About</a>
    <a href="#">Services</a>
    <a href="#">Clients</a>
    <a href="#">Contact</a>
  </div>
  
 
    
</body>
</html>

bottom of page