Learn HTML by Building a Cat Photo App - Step 3

Tell us what’s happening:
Describe your issue in detail here.
I have my comment above the element p but it says it wrong arrange

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <p></p>
   <!--TODO: Add link to cat photos--> 
</body>
</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:

Hi @isaacbentil989

Your comment is below the p element not above.

Hope that helps :pray:

Hello @alfonsusac i changed it but it didnt proceed

Hi @isaacbentil989 sorry for the late reply.

Can you provide us the full code of your latest attempt?

Put it inside triple backticks like so

```html

paste code here

```

You can copy paste the format above.

That would be much appreciated <3

  <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
    <p>
    <!--TODO: Add link to cat photos-->
  </body>

Hi @isaacbentil989, As I’ve mentioned above,

Your comment is BELOW the p element.

p element includes the opening tag <p> and the closing tag </p>.

This is now invalid HTML code as the p element is missing a closing tag.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.