Learn HTML by Building a Cat Photo App - Step 14

Hello, I need assistance on STEP 14, I am honestly lost, can I get a helping hand?

Thank you

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more <a href="https://freecatphotoapp.com">cat photos_blank</a> in our gallery.</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>

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

Link to the challenge:

Welcome to the forum @Onthusitse

You appear to have put the attribute value in the text of the paragraph element.

Please add the target attribute to the opening anchor tag nested inside the paragraph element.

Use the href attribute as a guide on how to structure the code.

Happy coding

The attribute value _blank shoud be put inside the opening of anchor tag.
Mod edit: removed

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

1 Like

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