Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

I tried everything possible and can’t get past step 14 assignment “cute cates”

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

<p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
<p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
      <p>Everyone loves cute cats online!</p>

<!-- User Editable Region -->

      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
 < a href=https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg"=cute cats</a>

    </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/131.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

you have added this various times:

instead you need to add an anchor element to this p:

Welcome to the forum @Costa2

Please reset the step to restore the seed code.
You can use the second paragraph element as a guide to structure the anchor element.

Happy coding

Thanks , I am so frustrated. Appreciate your feedback. Still working on it. Hope this is not a glitch in the system . Saw a lot of post on this same segment #14.

I reset and deleted all dup entries and still getting an error msg. this is the new entry. Also tried to include

at the end.

<p>Everyone loves cute cats online!< a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg"</a>

Hi @Costa2

I edited your post above so that the code formats correct on the forum.
The anchor element is not nesting any text at the moment.

  1. you have an extra space after the opening angular bracket
  2. the opening anchor tag is missing a closing angular bracket
  3. the opening anchor tag needs to go before the text cute
  4. the closing anchor tag needs to go after the text cats

Happy coding