Learn HTML by Building a Cat Photo App - Step 11

no me deja avanzar me pide lo siguiente // ejecutando pruebas El texto de su elemento ancla (

a

) debe ser

cat photos

. Asegúrese de colocar el texto del vínculo entre la

a

etiqueta de apertura y la etiqueta de cierre del elemento ancla ( ). // pruebas completadas,
pero ya lo realice pero no se que estoy haciendo mal

<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>(cat photos.)</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more cat photos.</p>
    <a href="https://www.cat photos.com"></a>
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 11

Link to the challenge:

You put the words “cat photos” inside the href attribute. The href attribute is for telling the browser where the link should go to. So you want to leave the original URL in the href attribute.

Look at the instructions again:

“A link’s text must be placed between the opening and closing tags of an anchor (a) element.”

That means you add text to a link by putting the text in between the opening <a> tag and closing </a> tag.

Does this give you enough help?

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.