Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

I did the same as I see ı cannot find whaat’s wrong in number of .14 task

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p><a href="https://freecatphotoapp.com"catphotos='_blank'>

<!-- User Editable Region -->

      <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/126.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

Hi there, please click the reset button to restore the original code.

Then add the target attribute to the anchor opening tag.

It should be something like:

<a target="something" href=…..>

Hi @ggds,

We just want to use one anchor <a> tag here inside our <p> element. Within the <a> tag is where we’ll place the target attribute, and set the value to "_blank".

For example:

<p>You should search this on <a href="http://www.google.com" target="_blank">Google.</a></p>

I hope this helps. Happy coding!

ıt didn’t work

<p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p><a target="cat photos" href=…..>

sorry I don’ understand so it sstill confused even
just started

In the future, please create your own topic when you have specific questions about your own challenge code. Only respond to another thread when you want to provide help to the original poster of the other thread or have follow up questions concerning other replies given to the original poster.

The easiest way to create a topic for help with your own solution is to click the Ask for Help button located on each challenge. This will automatically import your code in a readable format and pull in the challenge url while still allowing you to ask any question about the challenge or your code.

Thank you.

Welcome to the forum @ggds

I edited your code in the post above so the code will correctly format in the forum.

Please delete the second anchor element, is it it not needed.

The target attribute property and value needs to go in the anchor element nesting the text cat photos

Please read the post from @ablairmorris regarding the code syntax. or look at the example code given in the instructions.

Happy coding