Stuck in step 12 - Cat Photos App

I’ve got stuck in this step. I can’t seem to figure out what is the issue.
It asks me to use an anchor inside my paragraph element, in which only the words ‘cat photos’ are a link. The preview seems to be working fine either way.

I thought the issue was with the period before the closing p tag, but it isn’t.
Can anyone help me out?

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <main>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a href="http://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>

from the last statement in challenge instruction for step 12
Hint : Make sure to remove the a element with the text cat photos on the line below the p element.

1 Like

I think the error might be due to you are missing the letter “s” in “https://”

3 Likes

I did that, but didn’t work anyway :confused:

I’ve tried that too, didn’t work

I don’t know if I can close this topic.

The issue was with the period at the end of the paragraph element. However I had to rewrite the whole element for it to work, just removing the period wasn’t working at all

1 Like

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