Intro_basicos_HTML_CSS/CursoHTML/15_iframe.html

17 lines
877 B
HTML
Raw Permalink Normal View History

2020-11-18 01:21:49 -03:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d747445.0124244334!2d-3.151125072102944!3d42.9633768798429!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xd4fd1dee354ac6f%3A0x308230a14ae3bd3c!2zUGHDrXMgVmFzY28sIEVzcGHDsWE!5e0!3m2!1ses-419!2scl!4v1513714652317" width="600" height="500" frameborder="1" style="border:1" name="cuadro1"></iframe>
<iframe src="03_encabezados.html" width="600" height="500" name="cuadro2" scrolling="yes" frameborder="1" ></iframe>
<hr>
<a href="07_elementos_cita.html" target="cuadro2">Ir a documento de cita</a><br>
<a href="http://www.google.com" target="cuadro1">Ir a Google</a>
</body>
<hr>
<a href="14_div-span.html"><--Anterior</a>
<a href="16_caracteres.html">Siguiente--></a>
</html>