Saludos
aquí dejo el html y el css
Código PHP:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” >
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<LINK rel="stylesheet" type="text/css" href="estilos.css">
<title></title>
</head>
<body>
<div id="wrapper">
<div id="header">
Logo
<div id='buscador' ><br><input type=text id=busc_input size=40><input type=button value=Buscar>
<br> <a href=Avanzado>Avanzado</a>
</div><!-- fin buscador -->
</div>
<!-- fin header -->
<div id='contenedor'>
<div id="columnas">
<div id="izquierda">Izquerda </div> <!-- fin izquierda -->
<div id="central">central </div> <!-- fin central -->
<div id="derecha"> derecha</div> <!-- fin derecha -->
</div><!-- fin columnas -->
</div> <!-- fin contenedor -->
<div id='footer'>
footer
</div> <!-- fin footer -->
</div><!-- fin wrapper -->
</body>
</html>
Código PHP:
#header{
width:100%;
background-color:blue;
}
#contenedor div {
display : inline;
}
#izquierda{
height:50%;
background-color:#BDD2EF;
float:left;
width:20%;
}
#central{
height:50%;
background-color:red;
float:left;
width:60%;
}
#derecha{
height:50%;
background-color:#DAF7E2;
float:right;
width:20%;
}
#footer {
height:20%;
background-color:#D3D1C1;
clear:both;
}
#buscador{
width:500px;
height:100px;
background-color:red;
}