In this step you should wrap the following html elements:
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>See more cat photos in our gallery.</p>
into a ‘main’ element. The ‘main’ element has both, the opening <main> and the closing </main> tags. As you can see, your editor shows a blank space above the given code (here goes the opening ‘main’ tag) and below the given code (here goes the closing ‘main’ tag).
You are wrapping your h1 and h2 inside of the p tag, but thats not how the challenge first started out. Your entire p element needs to come after your h2.
You can also reset the challenge, and see how the challenge lays out everything