tengo un problemita..
yo lo que quiero hacer es una tabla arriba de la pagina, y debajo de esta, que se cargue una pagina web cualquiera, con un frameset,
pero no me funciona.. nose porque..
seria este el codigo:
Código HTML:
<!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Documento sin título</title> <style type="text/css"> <!-- body { padding:0 ; margin: 0 ; } --> </style></head> <body> <table width="100%" border="0"> <tr> <td bgcolor="#4D6185"> </td> </tr> </table> <FRAMESET border=0 rows="100%,*" frameborder="no" marginleft=0 margintop=0 marginright=0 marginbottom=0> <frame src="http://google.com" scrolling=auto frameborder="no" border=0 noresize> <frame topmargin="0" marginwidth=0 scrolling=no marginheight=0 frameborder="no" border=0 noresize> </FRAMESET> </body> </html>
MC