Learn HTML by Building a Cat Photo App - Step 13

i’m stuck and dont know what to do on step 13 !

I cant seem to understand the instruction .

  **<p>Click here to view more <a_blank href="https://freecatphotoapp.com">cat photos</a>.</p>**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more <a_blank 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/105.0.0.0 Safari/537.36

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

Link to the challenge:

Which part of the instruction do you not understand? I can explain to you if you give me a keyword :grin:

You’re asked to add a target attribute with a value of _blank.
This is done so that once the link is clicked it is opened on another browser window instead of the one you’re on.

attributes are usually referenced by:
attribute name=“attribute Value”

In this case the attribute name is target and
attribute value is _blank.

inside the a element you should have target=“_blank” not a_blank as you did.

You are already familiar with the href attribute. its the same way

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