En primer lugar, no presentes más código de esta manera
<HTML>
<div id=cap>
<br>
incluí siempre un doctype valido ,el head y el body
no utilices id para tus divs "clear", usá class, siempre es probable que necesites otras de esas en el resto del html, y los id deben ser únicos
no intentes posicionar cosas con saltos de línea <br>
tu html y css deberían ser
Código HTML:
Ver original<!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"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> /*<![CDATA[*/
div#cap {
background-color: green;
text-align: right;
padding: 20px;
}
div#cap h1 {
float: left;
}
div.clear {
clear: both;
}
/*]]>*/
<img src="formula.jpg" width="200" height="100" alt="" />
y desde ya , empezar con unos buenos manuales
Saludos