Cat website, level 13

Tell us what’s happening:
Describe your issue in detail here.
I’ve been on this step for a while and I don’t understand what it means when it says " Your p element should have a nested anchor (a ) element" I’ve tried removing spaces and different characters and nothing working please help.

  **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_blankhref="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/102.0.0.0 Safari/537.36

Challenge: Step 13

Link to the challenge:

Adding a target attribute is just like adding any other attribute, you follow the pattern:

name="value"

Earlier you added the href attribute to the link:

<a href="https://freecatphotoapp.com">

Where href is the name of the attribute and https://freecatphotoapp.com is the value. You will do the same thing for the target attribute with a value of _blank. Be sure not to mess with the href attribute. You are only adding an additional attribute to the link. And make sure you separate the new attribute from the href attribute with a space.

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