freeCodeCamp/curriculum/challenges/espanol/01-responsive-web-design/basic-html-and-html5/link-to-external-pages-with...

2.3 KiB

id title challengeType videoUrl forumTopicId dashedName
bad87fee1348bd9aedf08816 Enlaza hacia páginas externas con los elementos anchor 0 https://scrimba.com/p/pVMPUv/c8EkncB 18226 link-to-external-pages-with-anchor-elements

--description--

Puedes usar los elementos a (anchor) para enlazar a contenido fuera de tu página web.

Los elementos a requieren un atributo href con la dirección web de destino. También necesitan un texto anchor. Por ejemplo:

<a href="https://freecodecamp.org">this links to freecodecamp.org</a>

Entonces tu navegador mostrará el texto this links to freecodecamp.org como un enlace que puedes hacer clic. Y ese enlace te llevará a la dirección web https://www.freecodecamp.org.

--instructions--

Crea un elemento a que enlace a https://freecatphotoapp.com y tenga "cat photos" como su texto anchor.

--hints--

Tu elemento a debe contener el texto anchor: cat photos.

assert(/cat photos/gi.test($('a').text()));

Necesitas un elemento a que enlace https://freecatphotoapp.com

assert(/https:\/\/(www\.)?freecatphotoapp\.com/gi.test($('a').attr('href')));

Tu elemento a debe tener una etiqueta de cierre.

assert(
  code.match(/<\/a>/g) &&
    code.match(/<\/a>/g).length === code.match(/<a/g).length
);

--seed--

--seed-contents--

<h2>CatPhotoApp</h2>
<main>



  <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">

  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>

--solutions--

<h2>CatPhotoApp</h2>
<main>

  <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">

  <a href="https://freecatphotoapp.com">cat photos</a>
  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>