Hi there, this is my first post, and helping someone.
Ihope this does help, try the following
<!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=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.left {
background-color: #FFCCFF;
float: left;
}
.right {
background-color: #CCCCCC;
}
.myColumn{
background-color: #FFFFCC;
float: left;
width: 100px;
margin: 10px;
padding: 10px;
font-size: 9px;
font-family: Arial, Helvetica, sans-serif;
}
-->
</style>
</head>
<body>
<div class="left">Content for class "left" Goes Here</div>
<div class="right">Content for class "right" Goes Here</div>
<div class="myColumn">Content for class "myColumn" Goes Here</div>
<div class="myColumn">Content for class "myColumn" Goes Here</div>
<div class="myColumn">Content for class "myColumn" Goes Here</div>
<div class="myColumn">Content for class "myColumn" Goes Here</div>
</body>
</html>