Put 3 divs in, Float them left and set width & padding in css. eg: <style> #columns {width:960px} #col {width:300px;float:left;margin-right:20px;} </style> <div id="columns"> <div class="col"> <!-- code in here--> </div> <div class="col"> <!-- code in here--> </div> <div class="col"> <!-- code in here--> </div> </div> HTML: This is just to give you an idea really There are plenty of tutorial around for this kind of thing.