Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

It keeps saying that mine is wrong but there’s nothing wrong with my website, I don’t see any issue with it, I really want to continue I just started can I please have some help please I included all of the words and everything and I have tried so many ways to try to make my code correct but for some reason it keeps declining I really need help.

Your code so far

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

<!-- User Editable Region -->

      <p>Everyone loves cute cats online!</p>
  <p>See more </p>  <a href="https://freecatphotoapp.com"</a>cat photos</a> <p>  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.6 Safari/605.1.15

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Well done for getting ahead. I don’t know if that is unintentional or not but keep doing what you are doing. Experiment among the steps to help you learn everything it teaches you.

With the see more part, you should leave out the closing p tag. You can nest links (the anchor elements) inside parargraph elements too.

Hopefully this helps

Welcome to the forum @adeelmrana

Here is a comparison of the original code and your code.

The code in blue is the original code, the code in red is your code.
The code in magenta is the overlap.

image

For this step you do not need to add any elements or tags.
You added extra paragraph tags and also, you added an extra anchor closing tag.

Please reset the step to restore the seed code and add only the text mentioned in the instructions.

Happy coding