Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
i don’t know what to do to make this code right
Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p><a href="https://freecatphotoapp.com">cat photos.</a></p>
      <a href="https://freecatphotoapp.com">link to cat pictures</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 6.1; rv:106.0) Gecko/20100101 Firefox/106.0

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

Link to the challenge:

Don’t change the given code in sense of deleting the text. What you have done is to some extent correct, but you erased the part of the sentence. The instruction says: " In the text of your p element, turn the words cat photos into a link". Only these words should be wrapped with ‘a’ tags. Pay attention to the dot at the end of the sentence. It is not hyperlinked (doesn’t belong between ‘a’ tags).

pay attention on what the test is telling you to do.

you’re going to get another error with “cat photos.” pay attention to what is highlighted in the question.

edit** DobarBrend already explained that perfectly.

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