jueves, 20 de junio de 2019

Operativizando un Frame en Pagina Web


Operativizando Frame en html 5


Entrada Html:
<!doctype html>
<html lang="es">
<head>
<meta chasrset=UTF-8>
<title>Crear Marcos</title>
</head>
<frameset rows="18%,*"frameborder="yes" bordercolor="#333"
marginwidth="10%" marginheigth="10%" scrolling="yes">
<frame src="superior.html" name="sup"></frame>
<frameset cols="20%,*" frameborder="yes" bordercolor="#333" marginwidth="10%" marginheight="10%" scrolling="yes">
<frame src="izquierdo.html" name="izq"></frame>
<frame src="derecho.html" name="der"></frame>
</frameset>
</frameset>
</html>


jueves, 6 de junio de 2019

Un documento simple con marcos(prueba)


Un documento simple con marcos

<!DOCTYPE HTML PUBLIC>
<HTML>
<HEAD>
<TITLE>Un documento simple con marcos</TITLE>
</HEAD>
<FRAMESET cols="25%,*">
<FRAMESET rows="20%,*">
<FRAME src="contenidos_del_marco1.html">
<FRAME src="contenidos_del_marco2.gif">
</FRAMESET>
<NOFRAMES>
<p>ESTE CONJUNTO DE MARCOS CONTIENE:
</NOFRAMES>
</FRAMASET>
</HTML>

Un documento simple con marcos(prueba)


Un documento simple con marcos

<!DOCTYPE HTML PUBLIC>
<HTML>
<HEAD>
<TITLE>Un documento simple con marcos</TITLE>
</HEAD>
<FRAMESET cols="20%, 80%">
<FRAMESET rows="100, 200">
<FRAME src="contenidos_del_marco1.html">
<FRAME src="contenidos_del_marco2.gif">
</FRAMESET>
<NOFRAMES>
<p>ESTE CONJUNTO DE MARCOS CONTIENE:
<ul>
<LI><A> href="contenidos_del_marco1.html">Contenidos Cheveres</A>
<LI><IMG src="contenidos_del_marco2.gif" alt="Una imagen chevere">
</UL>
</NOFRAMES>
</FRAMASET>
</HTML>

Mi primera pagina WEB: frames(prueba)


Mi primera pagina WEB: frames

<!DOCTYPE html>
<head>
<title>Mi primera pagina WEB: frames</title>
</head>
<frameset> cols="40%,*">
<frame> id="frmIzquierdo" name="frmIzquierdo" src="pagina2.html" />
<frame> id="frmDerecho" name="frmDerecho" src="pagina3.html" />
<noframes>
<body>Su navegador no soportar frames</body>
</noframes>
</frameset>
</html>