Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:
Describe your issue in detail here.
Hello! So I made it to step 14 with ease, but find that no matter where I place my target attribute the program no longer recognized my embed (a) element… Am I missing or omitting something? please help. I tried looking at other threads covering this step but found that they were no help.
Your code so far

<html>
  <body>
      <h1>CatPhotoApp</h1>
      <main>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p> See more <a href="https://freecatphotoapp.com" target="_blank" >cat photos </a> in our gallery.</p>

<!-- User Editable Region -->

      <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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15

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

Link to the challenge:

Nevermind! I found that my closing tag had a space before it causing the program to not recognize “cat photos”.

Welcome to our community!

The words “cat photos” should be surrounded with ‘a’ tags. In your code, you have ‘a’ tags surrounding " blank space + cat photos". There is a blank space before the word “cat”. This is not what you should have here.

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