Learn HTML by Building a Cat Photo App - Step 10

Tell us what’s happening: when i place an anchor and check the code it keeps saying the anchor is supposed to be below the p element but when it is it still says that. Am i coding something wrong ?

Your code so far

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

<!-- User Editable Region -->

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

<!-- 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 10

Hi there and welcome to our community!

Your code should pass.

You may need to try the following:

  1. Reset the lesson and then resubmit your code.
  2. Do a hard-refresh (CTRL+F5).
  3. Ensure that all browser extensions are disabled, as they can interfere with the tests.
  4. Try a different browser.

Hey @dimitriusyanez
You are doing a very good job keep it up.Your code looks Ok Try removing the space before the p text below

And the space after the text below

Then try running it
Happy coding

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