Learn HTML by Building a Cat Photo App - Step 13

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

  **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 href="https://freecatphotoapp.com" "_blank">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; rv:104.0) Gecko/20100101 Firefox/104.0

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

Link to the challenge:

hello and welcome to the forum!

@wihm3187 hey you have to use target attribute and “_blank” in the anchor tag.
and try to explain the problem or recheck the code.

So reading a little bit, which in my opinion should be added as much needed information. Anchoring a target is priming the web page to open another window so try going in the order of operations in computer logic here. When you prime the target, you are going to need a new window to open up and “_blank” is the new blank web page that is going to open up but the linked URL to the photos are going to fill the new web page with said cat photos. I hope this gives a really good hint as to what you are suppose to do in this exercise.

problem was very simple there is no need huge explanation

1 Like

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