Temario del Tutorial->51 - Frames - Anidamiento de frameset


Simulador (Cuando presiona el botón "ejecutar el programa" se graba lo que contiene la caja de texto y se visualiza el resultado en una página)

Problema:Confeccionar una página que contenga dos filas. La primera fila muestre un frame de 70 píxeles de alto y la segunda fila dividirla en dos columnas que tengan dos frames, el primero de 200 píxeles y el otro del resto de píxeles sobrantes. Hacer que no se puedan redimensionar.
-------------------------------------------------
|                                                |
|                                                |
|                                                |
-------------------------------------------------
|       |                                        |
|       |                                        |
|       |                                        |
|       |                                        |
|       |                                        |
|       |                                        |
|       |                                        |
|       |                                        |
|       |                                        |
|       |                                        |
|       |                                        |
-------------------------------------------------

Ver solución

<html>
<head>
<title>prueba de frames</title>
</head>
<frameset rows="70,*">
  <frame src="pagina2.html" noresize>
  <frameset cols="200,*">
     <frame src="pagina3.html" noresize>
     <frame src="pagina4.html" noresize>
  </frameset>
<noframes>
<p>El navegador no soporta frames</p>
</noframes>
</frameset>
</html>
<html>
<head>
<title>prueba de frames</title>
</head>
<body>
<h1>Página A</h1>
</body>
</html>
<html>
<head>
<title>prueba de frames</title>
</head>
<body>
<h1>Página B</h1>
</body>
</html>
<html>
<head>
<title>prueba de frames</title>
</head>
<body>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
<h1>Página C</h1>
</body>
</html>
pagina1.html




pagina2.html


pagina3.html


pagina4.html

Retornar