HTML CODE FULL LENGTH SIDE BAR 2 COLUMNS RESPONSIVE WEB DESIGN LAYOUT
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 25%;
background-color: #f1f1f1;
position: fixed;
height: 100%;
overflow: auto;
}
li a {
display: block;
color: #000;
padding: 8px 16px;
text-decoration: none;
}
li a.active {
background-color:#000;
color: white;
}
li a:hover:not(.active) {
background-color: #555;
color: white;
}
</style>
</head>
<body>
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
<div style="margin-left:25%;padding:1px 16px;height:1000px;">
<h2 id="home"> HOME Fixed Full-height Side Nav</h2>
<hr size=5 color=#000>
<h3>Try to scroll this area, and see how the sidenav sticks to the page</h3>
<p>Notice that this div element has a left margin of 25%. This is because the side navigation is set to 25% width. If you remove the margin, the sidenav will overlay/sit on top of this div.</p>
<p>Also notice that we have set overflow:auto to sidenav. This will add a scrollbar when the sidenav is too long (for example if it has over 50 links inside of it).</p>
<p id="news">News</p>
<img src="radialsymmetry.gif" alt="dogs" width= 100% height =550 valign="middle" ></img>
<p id="contact">Contacts</p>
<hr size=5 color=#000>
<p>FACEBOOK </p>
<p>INSTAGRAM </p>
<p>YOUTUBE </p>
<p>FACEBOOK </p>
<p>INSTAGRAM </p>
<p>YOUTUBE </p>
<p>FACEBOOK </p>
<p>INSTAGRAM </p>
<p>YOUTUBE </p>
<p id=about> About </p>
<hr size=5 color=#000>
<p>TEAM PROFILE </p>
<p>BUSINESS PROCESS</p>
<P>MISSION /VISION /PHILOSOPHY </P>
<p>Some text..</p>
<p>Some text..</p>
<p>Some text..</p>
<p>Some text..</p>
<p>Some text..</p>
<p>Some text..</p>
</div>
</body>
</html>

Comments
Post a Comment