Learn HTML by Building a Cat Photo App - Step 12

I have turned the words cat photos into a link to https://freecatphotoapp.com by adding opening and closing anchor (a ) tags around the words but I am still receiving an error. What am I doing wrong?

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>click here to view<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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.47

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

Link to the challenge:

Add a space after the word “view” and remove the extra space inside the anchor tag (on the left of the word cat)

You are also missing the period at the end just to the left of the closing p tag.

Thank you for your response. I am still receiving an error, please view the image below and confirm that I made the correct updates as you stated.

It looks like you changed the word click at the start from Click to click. (You deleted the word more I think)

I suggest you click restart step and redo the exercise in case there are other things you changed by mistake.

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