Duplicate Home page with header, navigation and footer

This suggestion has been closed. Votes are no longer accepted.
Post your page HTML/CSS here in a code box.
<style type="text/css">
article {
float: left;
width: 680px;
}

aside {
float: right;
width: 305px;
padding:0 0px 0 15px;
}
.verticalLine {
border-left: thick solid #006600;
padding:0 0px 0 15px;
}

#wrap {
width: 1000px;
margin: 0 auto;
}
</style>


<div id="wrap">
<article>

blah blah blah

</article>
<aside><div class="verticalLine">

blah blah blah

</aside>
</div></div>
 
Top Bottom