Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:
Describe your issue in detail here.

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 more <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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.26

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

Link to the challenge:

:balloon: Hi, welcome to the forum!
We see you have posted some code but did you have a question?

Hi, I am not exactly sure what is the question you have, but to pass the challenge all you need to do is follow the instruction on the error message.

fcc

What it says is you need to add a target="needed_value" attribute to your anchor element <a href="some.link">link text<a/>.

So it would look more like this: <a href="some.link" target="needed_value">link text<a/>.

Hope this answers your problem. Next time try to specify what exactly is the issue you have.

You have learned how to add attributes to elements in one of the earlier tasks I believe, so at this point it assumes that you are already familiar how to add one and provides you with the type “target” and value “_blank” for you to add.

i’ve figured it out, thanks for your assistance.

Try to mark your topic(s) solved when they are resolved (just find the post that helped you the most and check it as the solution)

I’ve figured it out, Thanks for your assistance, i appreciate

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