Learn HTML by Building a Cat Photo App - Step 4 - What am I doing wrong here?

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <p>Click here to view more cat photos.</p>
<!-- <h2>TODO: Add link to cat photos</h2> -->
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 4

Link to the challenge:

Hello there.

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.


You put h2 tags inside of the comment, but the instructions did not ask for that.

Tell us what’s happening:
When I check, it says it must be above p element. I’ve tried several different ways with no luck. What am I doing wrong ?

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <p>Click here to view more cat photos.</p>
<!--TODO: Add link to cat photos-->
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 4

Link to the challenge:

right now the comment is below the p element.
So just move it one line above.

Tell us what’s happening:
What do I put here to get it above ? I have recieved several emails pointing that error out, but I’m unable to respond to the emails for futher assistance.

Your code so far

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

Your browser information:

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

Challenge: Learn HTML by Building a Cat Photo App - Step 4

Link to the challenge:

I think it is because of the full stop after the word "photos . ". Try removing the full stop

The p element is above the comment. Switch the two lines.

No need to double post the exact same thing - both the above/below and the period need to be fixed.