I am stuck on step 12 where i have to add target ut after i added it it says that it is not there because my g is different

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 target_blank="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:

hellow and welcome to fcc forum :slight_smile:

you need to fix this:

  • <p>Click here to view more <a href target_blank="https://freecatphotoapp.com">cat photos</a>.</p>
  • “target” needs to be assigned with “_blank”
  • https://freecatphotoapp.com” must be assigned to “href”

once you have fix these, it should be fine :slight_smile:

happy learning :slight_smile:

you deleted the href attriput and replaced it with the new one ,instead you should create a new attripute and asign it to what the chaleenge is saying it should be ,reset the challenge and look at the href attripute as an example .

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