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