Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
What am I missing on this one? I think I’m reading the instructions incorrectly.

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <a>Click here to view more https://freecatphotoapp.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 12

Link to the challenge:

The part you are missing is where the instructions said to: " In the text of your p element, turn the words cat photos into a link to https://freecatphotoapp.com"
The original html given to you looked like this I believe:

<p>Click here to view more cat photos.</p>

The last two words in that sentence are “cat photos”. And the request is, make these two words a link to the website URL provided in the question.

That is, when you’re done, a person should be able to click on the words “cat photos” and be taken to the linked website. In your solution, the words “cat photos” have been replaced with https://freecatphotoapp.com so of course, there is no way to click on them in this solution (as they are gone).

Hopefully this is a good enough hint for you.

Thank you so much! The wording was throwing me off!

Click here to view more cat photos

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