Learn HTML by Building a Cat Photo App - Step 15

Tell us what’s happening:
The app is a bit too persnickety. I got to the part where you need to put the attribute target=“_blank” into the anchor tag, and suddenly it insisted that I hadn’t put a target attribute in when I went to clear it. My first attempt was at the end of the href attribute, and it said exactly the same thing.

I did notice that it failed me before because I added a period to the end of the contents of the Paragraph element.

I notice that I’m not the only one with this problem.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Everyone loves <a target="_blank" href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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 mobile information:

KFTRWI - Android 9 - Android SDK 28

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

Link to the challenge:

you are adding the target attribute to the wrong element, you need to add it to this one

Well, that rather explains things.

I still think the app is too persnickety about grammar, however.

what grammar are you talking about? if there are issues that can be addressed it’s really helpful if you are specific on what issues you are finding