I'm really learning more and more of this all the time myself. I came up with this that closely mimics your image. There could easily be better ways to do it:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en" dir="ltr">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
body {
margin:0;
padding:0;
}
.header a{
color:#fff;
background-color:#374461;
text-decoration:none;
}
.header {
position:relative;
height:2.5em;
font-family:verdana, arial, sans-serif;
font-size:.9em;
padding:0 5px;
color:#fff;
background-color:#374461;
border-bottom:1px solid #576178;
}
.header div {
position:absolute;
top:50%;
margin-top:-.55em;
}
.leftc, .rightc {
font-family:verdana, arial, sans-serif;
font-size:.9em;
height:36em;
border-top:1px solid #000;
}
.leftc div, .rightc div {
padding:0 5px;
}
.leftc {
float:left;
width:20%;
color:#fff;
background-color:#555454;
}
.rightc {
float:right;
width:80%;
color:silver;
background-color:#fff;
}
.footer {
clear:both;
height:1.5em;
position:relative;
font-family:verdana, arial, sans-serif;
font-size:.9em;
padding:0 5px;
color:#fff;
background-color:#374461;
}
.footer div {
position:absolute;
bottom:0;
}
</style></head>
<body>
<div class="header">
<div>Website Name - <a href="#">Home</a> - <a href="#">Link</a> - <a href="#">Link</a> - <a href="#">Link</a> - <a href="#">Link</a> - <a href="#">Home</a> - <a href="#">Link</a> - <a href="#">Link</a> - <a href="#">Link</a> - <a href="#">Link</a> - </div>
</div>
<div class="leftc">
<div>navigation</div>
</div>
<div class="rightc">
<div>content</div>
</div>
<div class="footer">
<div>Footer</div>
</div>
</body>
</html>
Bookmarks