I need help with responsive web design course step 13

What do I do in here? I don’t understand.

  **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">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>

Challenge: Step 13

Link to the challenge:

I don’t see where you’ve attempted this.

The instructions are:

Add a target attribute with the value _blank to the anchor (a ) element’s opening tag, so that the link opens in a new tab.

The anchor already has an href attribute that has a value of “https://free...” You need to add a new attribute/value pair to that anchor.

Give it a shot. If it doesn’t work, show us what you’ve tried and we’ll see if we can get you closer.

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