Build a Cat Photo App - Step 14

Tell us what’s happening:

I noticed that the phrase ‘cute cats’ appears twice, even though it should only appear once. Is this a bug?

Your code so far

<!DOCTYPE html>
<html>
  <head>
    <title>CatPhotoApp</title>
  </head>
  <body>
    <main>
      <h1>CatPhotoApp</h1>

<!-- User Editable Region -->

      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      
      <p>
        <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a>
      </p>

      <p>Everyone loves cute cats online!</p>
      <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.">
    </main>
  </body>
</html>

<!-- User Editable Region -->

Your browser information:

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

Challenge Information:

Build a Cat Photo App - Step 14

Hi. It’s not a bug, you haven’t done it correctly. Reset the step and only wrap the anchor tags around the words ‘cute cats’. Don’t add any further text. Look at line 8 for an example of an anchor tag.

1 Like

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