CSS CSS Layout

CSS Layout

<html><head>
<style type="text/css">
body { margin:0px 0px 0px 0px; }
#left {
	float:left;
	width:200px;
	background:orange;
	margin:0px;
	font: 12px Verdana;
	color: white;
	}
#right {
	width:600px;
	padding:0px;
	float:left;
	background:#eee;
	}
#header {
	height: 90px;
	color: #fff;
	background-color: #FFEC8B;
	border-bottom: 4px solid #99c035;
}
:link { COLOR: white; TEXT-DECORATION: none; }
:visited { COLOR: #666666; TEXT-DECORATION: none; }
A:hover { COLOR: black; TEXT-DECORATION: none; }
</style>
</head><body>

<TABLE bgcolor=orange cellSpacing=1 cellPadding=0 width=802><TR><TD>
<div id="header">Test</div>
<div id="left">Test<BR>Test<BR>Test<BR>Test<BR>Test</div>
<div id="right">Test<BR>Test<BR>Test<BR>Test</div>
</TABLE>

</body>
</html>