Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Created March 29, 2018 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidPeralvarez/abc29cf3e5e3cdfb3a24c55b892b5e9b to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/abc29cf3e5e3cdfb3a24c55b892b5e9b to your computer and use it in GitHub Desktop.
Hipervínculos 1
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Aprendiendo sobre hipervínculos</title>
</head>
<body>
<h1>Hipervínculos</h1>
<h2>En esta lección aprenderé cómo funcionan los hipervínculos</h2>
<p><a href="https://silicodevalley.com" target="_blank">Este enlace</a> es un hipervínculo absoluto (externo).</p>
<p>Este es un <a href="enlace_relativo.html">hipervínculo relativo</a>. Es decir, enviamos al usuario a otra página de nuestro sitio web.</p>
<p>Envíame un email a <a href="mailto:david@sisou.com">david@sisou.com</a></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment