<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.container1 {
width: 100%;
background-color: #333;
}
.container2 {
background-color: #666;
width: 100%;
}
.container3 {
background-color: #999;
width: 100%;
height: 100px;
}
.header {
width: 600px;
background-color: #FFF;
height: 100px;
margin-right: auto;
margin-left: auto;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #CCC;
}
.contentarea {
width: 600px;
margin-right: auto;
margin-left: auto;
background-color: #FFF;
}
.content1 {
float: left;
width: 150px;
border-right-width: 1px;
border-right-style: solid;
border-right-color: #CCC;
background-color: #FFF;
height: 400px;
}
.content2 {
float: left;
width: 449px;
background-color: #FFF;
}
.content3 {
float: left;
width: 449px;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #CCC;
border-right-color: #CCC;
border-bottom-color: #CCC;
border-left-color: #CCC;
}
.clear {clear:both;
line-height:0px;}
.footer {
width: 600px;
background-color: #FFF;
margin-right: auto;
margin-left: auto;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #CCC;
}
body {
background-color: #366;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
</head>
<body>
<div class="container1">
<div class="header">Company name</div>
</div>
<div class="container2">
<div class="contentarea">
<div class="content1">
<p>homepage<br />
siteaddress<br />
Details<br />
contactus<br />
details </p>
</div>
<div class="content2">Flash Image goes here</div>
<div class="content3">main content area</div>
<div class="clear"></div>
</div>
</div>
<div class="container3">
<div class="footer">Footer and copyright info goes here</div>
</div>
</body>
</html>
|