Intro_basicos_HTML_CSS/CursoHTML/11_link-imagen.html

16 lines
392 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>Links - Imagenes</title>
</head>
<body>
<a href="http://www.google.com" target="_blank">
<img src="img/roca.jpg" alt="Comentario de la roca" width="400">
</a>
<hr>
<!-- Link Local -->
<a href="10_imagenes.html"><--Anterior</a>
<a href="12_listas.html">Siguiente--></a>
</body>
</html>