08/11/2005, 10:08
|
| | | Fecha de Ingreso: octubre-2005 Ubicación: Coronado, Costa Rica
Mensajes: 138
Antigüedad: 19 años, 3 meses Puntos: 1 | |
Saludos jorge_buqui:
La solucion:
1.Salva lo que esta en rojo como menu.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" />
</head>
<body>
<p><a href="http://www.google.com/" target="mainFrame">GOOGLE</a></p>
<p><a href="http://www.yahoo.com/" target="mainFrame">YAHOO </a></p>
</body>
</html>
2. Salva lo que esta en azul como carga.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>Untitled Document</title>
</head>
<body>
</body>
</html>
3. Salva lo que esta en verde como principal.html : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<frameset rows="*" cols="194,*" framespacing="0" frameborder="no" border="0">
<frame src="menu.html" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
<frame src="carga.html" name="mainFrame" scrolling="auto" id="mainFrame" title="mainFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>
4. prueba el archivo principal para ver si eso es lo que necesitas.
5. Buena suerte!!! |