Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
the hint keeps saying to check for typos and punctuation errors but i cant find any errors

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
  <p><a href="https://freecatphotoapp.com"> cat photos </a></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>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Linux x86_64) 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 link is in the right spot, but they want it also in the middle of the original sentence, so that the words “cat photos” in that sentence are the clickable link:

Click here to view more cat photos.

i don’t understand what you mean

Sorry about that, here’s a more thorough example:

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

So that will be the original sentence. They want only the words “cat photos” to be the link that you click. You’ll want to rewrite it to be more like:

<p>This is my <a href="www.google.com">example</a>.</p>

Which gives you the result:

This is my example.

Thank you so much it worked

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