Tutoriales de informática - Abrirllave.com

Abrirllave.com

Ejemplo de un enlace sencillo en HTML

Ejemplo explicado en el apartado "Enlaces" del tutorial de HTML.

"enlace-sencillo.html"

<!DOCTYPE html>
<html lang="es-ES">
  <head>
    <meta charset="utf-8">
    <title>Ejemplo de un enlace sencillo</title>
  </head>
  <body>
    <p><a href="http://www.abrirllave.com/">Abrirllave</a> es un sitio web de tutoriales de informática.</p>
  </body>
</html>

Visualización en pantalla

Visualización del archivo enlace-sencillo.html en Google Chrome, donde se incluye un enlace sencillo.

Practicar el código del ejemplo