You should not change the indentation on the line with your comment element. Its opening tag should start 6 spaces over from the start of the line. You can restart the step to restore the original indentation.
Your code so far
<!-- User Editable Region -->
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p> See more cat photos in our gallery. </p>
</main>
<!-- User Editable Region -->
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0
Along with the previous good guidance provided, please remove the extra spaces after the <p> opening tag, and before the </p> closing tag?
It is important to never add extra spaces when we are coding.
They can cause the system to think something is missing from the code, and it awaits it. Often times, giving us error messages, we cannot figure out. I have been there often.