Ver Mensaje Individual
  #6 (permalink)  
Antiguo 03/12/2009, 10:06
mariomon17
 
Fecha de Ingreso: noviembre-2009
Mensajes: 846
Antigüedad: 14 años, 5 meses
Puntos: 34
iframe

I-FRAME
Creas una pagina con los botones e introduces un i-frame:
Código HTML:
<head>
<title>iframe</title>
</head>

<body>
<a href="uno.html" target="frame">Uno</a>
<a href="dos.html" target="frame">Dos</a>

<p><iframe width="800" height="300" name="frame" scrolling="yes" frameborder="0"/></p>
</body>
</html> 
(target=" ")se escribe en los links para determinar que la direciion se mostrara en el marco.

<iframe name="nombre para poner en el target" scrolling="barras de scroll, yes, no o auto" frameborder="borde del marco, numero"/>