Cat photo: Step 14

The task is to add _blank to the anchor (a ) element’s opening tag

      <p>Click here to view more <a_blank href="https://freecatphotoapp.com">cat photos</a>.</p>

:bulb:: 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’m confused about what this means I didn’t add or take away anything the tasks didn’t ask me to.

That’s not quite the complete description of the task:

“Add a target attribute with the value _blank to the anchor (a) element’s opening tag”

Do you see that you left out the target attribute? You have already added the href attribute with the value https://freecatphotoapp.com to the opening a tag. You would follow the same format to add the target attribute with the value _blank.

Thank you so much I didn’t comprehend that target was part of the code. I fixed it for anyone who got confused like me.

 <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>

We have blurred this solution so that users who have not completed this challenge can read the discussion in this thread without giving away the solution.

2 Likes

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