Is zwar mit divs und css, sollte aber trozedem gehen.
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<title>
</title>
<style type="text/css">
* {
margin: 0px;
padding: 0px; }
#page {
width: 952px;
margin: 0 auto; }
#mainheader {
width: 777px;
height: 200px;
float: left;
background-color: #ccc;}
#siteheader {
width: 175px;
height: 200px;
float: right;
background-color: #999}
#topline {
width: 952px;
height: 30px;
clear: both;
background-color: #f0f; }
#mleft {
width: 200px;
height: 523px;
float: left;
background-color: #f00;}
#mcenter {
width: 592px;
float: left; }
#mright {
width: 160px;
float: right;
height: 523px;
background-color: #0f0; }
#footline {
width: 952px;
height: 15px;
clear: both;
background-color: #00f; }
#ctop {
width: 592px;
height: 20px;
background-color: #ff0; }
#cleft {
width: 296px;
height: 120px;
float: left;
background-color: #a0a; }
#cright {
width: 296px;
height: 120px;
float: right;
background-color: #055; }
#cmain {
background-color: #440;
width: 592px;
min-height: 503px; }
</style>
</head>
<body>
<div id="page">
<div id="mainheader">Mainheader</div>
<div id="siteheader">Siteheader</div>
<div id="topline">Topline</div>
<div id="mleft">Left</div>
<div id="mcenter">
<div id="ctop">Centertop</div>
<div id="cleft">Centerleft</div>
<div id="cright">Centerright</div>
<div id="cmain">Centermain</div>
</div>
<div id="mright">Right</div>
<div id="footline">Footline</div>
</div>
</body>
</html>
Alles anzeigen
Wenn nicht, mach ich noch eins mit Tabellen.