Temario del Tutorial->47 - Frames


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 ventana que contenga 3 frames horizontales. Para esto definir la propiedad row del elemento frameset con el siguiente valor: rows="20%,60%,20%"
Ver solución

<html>
<head>
<title>prueba de frames</title>
</head>
<frameset rows="20%,60%,20%">
  <frame src="pagina2.html">
  <frame src="pagina3.html">
  <frame src="pagina4.html">
<noframes>
<p>El navegador no soporta frames</p>
</noframes>
</frameset>
</html>
<html>
<head>
<title>prueba de frames</title>
</head>
<body>
<h2>Frame 1</h2>
</body>
</html>
<html>
<head>
<title>prueba de frames</title>
</head>
<body>
<h2>Frame 2</h2>
</body>
</html>
<html>
<head>
<title>prueba de frames</title>
</head>
<body>
<h2>Frame 3</h2>
</body>
</html>
pagina1.html




pagina2.html


pagina3.html


pagina4.html

Retornar