Basic Web Layout with Sidebar

About

This is a basic layout sample using just HTML and CSS.

Design one web page or an entire website using this layout template.



Source: http://www.w3schools.com/html/html_layout.asp

Code:

About

This is a basic layout sample using just HTML and CSS.

Design one web page or an entire website using this layout template.

CSS:
#header {
background-color:black;
color:white;
text-align:center;
padding:5px;
}
#nav {
background-color:#eeeeee;
width:100px;
float:left;
padding:5px;
}
#section {
float:left;
padding:10px;
}
#footer {
background-color:black;
color:white;
clear:both;
text-align:center;
padding:5px;
}