<html>
<head>
<title>Layout de 3 colunas</title>
</head>
<style>
body { text-align: center; }
#site { width: 700px; }
#topo { width: 700px; height: 100px; }
#col1 { width: 150px; float: left; height: 300px; }
#col2 { width: 400px; float: left; height: 300px; }
#col3 { width: 150px; float: left; height: 300px; }
</style>
<body>
<div id="site">
<div id="topo"> </div>
<div id="col1"> </div>
<div id="col2"> </div>
<div id="col3"> </div>
</div>
</body>
</html>