CSS:
html, body {
padding: 0px;
margin: 0px;
font-family: verdana, helvetica, tahoma, sans-serif, arial;
color: black;
font-style: normal;
font-weight: normal;
font-size: 11px;
line-height: 18px;
}
.clearboth {
clear: both;
}
.divDate {
width: 880px;
height: 23px;
margin: 0px auto;
text-align: right;
line-height: 23px;
padding-right: 50px;
}
.divMain {
width: 1000px;
border: 1px solid #000;
}
.divBanner {
width: 1000px;
height: 120px;
background-color: #e7e7e7;
border-bottom: 1px solid #000;
}
.divBannerMenu {
width: 1000px;
height: 30px;
background-color: #eee;
border-bottom: 1px solid #000;
}
.divMenu {
float: left;
width: 170px;
margin: -1px;
padding: 10px;
background-color: #a8a8a8;
}
.divContent {
float: right;
width: 749px;
padding: 30px;
background-color: #b7b7b7;
border-left: 1px solid #000;
}
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<meta http-equiv="Expires" CONTENT="Fri, Jun 12 1981 08:20:00 GMT">
<meta http-equiv="Cache-Control" CONTENT="no-store">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta http-equiv="imagetoolbar" content="no">
<meta http-equiv="Content-language" content="dan">
<meta name="robots" content="all">
<link rel="stylesheet" type="text/css" href="/includes/style_test.css">
<script type="text/JavaScript" src="/includes/js/menuscript.js"></script>
<title>Redigér din profil</title>
</head>
<body onload="funClock();">
<div class="divDate">
<span style="margin-left: 15px; font-size: 11px;">Uge <%=DatePart("ww",date(),2,2)%></span>
<span style="margin-left: 15px; font-size: 11px; text-transform: capitalize;"><%=WeekdayName(Weekday(date))%></span>
<span style="margin-left: 15px; font-size: 11px;"><%=Replace(date(),"-",".")%></span>
<span style="margin-left: 15px; font-size: 11px;" id="uret"></span>
</div>
<div class="divMain">
<div class="divBanner">Banner</div>
<div class="divBannerMenu">BannerMenu</div>
<div class="divMenu">Menu</div>
<div class="divContent">Indhold</div>
<div class="clearboth"></div>
</div>
</body>
</html>