I'm making a web page but when I generate an HTML from a java class, but it generates the code of the description that is out of order (I get it to the right of the whole and it should come out below the image), why is that?
I leave the link to the web: osmarentcars.esy.es, and this is the format of the html:
*{
margin-bottom: 4px;
margin-top: 4px;
}
#todo{
width: 750px;
height: 100px;
font-family: "Times New Roman";
font-size: 14;
margin: auto;
padding-bottom: 2px;
background: transparent;
}
div{
background-color: #00FFFF;
}
img{
float: left;
width: 96px;
height: 60px;
}
.columna{
float: left;
width: 280px;
padding-left: 5px;
}
.descripcion{
clear: left;
}
<html>
<head>
<title>index.php</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link href="estilos.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1><center>OSMARENTCARS - 2016 PROBANDO...</center></h1>
<div id="todo">
<div>
<div>
<img src='VEHICULO5.PNG.jpg' width='96px' height='60px'/>
</div>
<div class="columna">
<b>I10</b><br/>
<b>Precio: 12589.57</b>
</div>
<div class="columna" align="center">
<u>FICHA TECNICA</u><br/>
Potencia: 87 Consumo: 7.90l
</div>
<div class="descripcion">
Descripcion: Aqui va la descripcion del coche
</div>
</div>
</div>
</body>
</html>