Learn HTML by Building a Cat Photo App - Step 5

Tell us what’s happening:

I keep getting this error mesage: Your main element’s closing tag should be below the p element. You have them in the wrong order.
but I’m sure this is correct:

<html>
   <body>
     <main>
        <h1> CatPhotoApp</h1>
        <h2>CatPhotos</h2>
    
        <!--TODO: Add link to cat photos -->
        <p> Click here to view more cat photos.</p></main>
   </body>
</html>

Your code so far


<!-- User Editable Region -->

```html
<html>
   <body>
     <main>
        <h1> CatPhotoApp</h1>
        <h2>CatPhotos</h2>
    
        <!--TODO: Add link to cat photos -->
        <p> Click here to view more cat photos.</p>
        </main>
   </body>
</html>

### Your browser information:

User Agent is: <code>Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36</code>

### Challenge Information:
Learn HTML by Building a Cat Photo App - Step 5
https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-by-building-a-cat-photo-app/step-5

Looks correct. There is a stray space here:

<p> Cl

That could cause a problem.

Can you please provide a link to the step?

Welcome to the forum @astonmanning123

You appear to have altered the text of the paragraph element.

Please reset the step to restore the seed code and try again.
Do not alter code you are not asked to, as it will affect the tests.

Happy coding