Stuck on level 13 cat photos website

Tell us what’s happening:
Describe your issue in detail here.
I have been trying to do this for HOURS and nothing is working and the hints are completely unhelpful " Your p element should have a nested anchor (a ) element with the text cat photos . You may have deleted it or have a typo." I dont understand what that means and I have tried almost every way toget it to work and it says the same exact thing even though when I click on the left pannel it works. I need help solving this level.

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more <a_blank 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 13

Link to the challenge:

@Calli707
The only thing the challenge needs you to do is to add a target attribute to our <a tag that’s all…
Something like this

<a target="_blank">
1 Like

OMG thank you so much! It worked I never would have gotten that.

@Calli707 You’re welcome anytime…Coding requires maximum attention and understanding…Keep pushing, happy coding…

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