Learn HTML by Building a Cat Photo App - Step 4

Tell us what’s happening:
Describe your issue in detail here.
Not sure what “Add comment above P means”.
this is what I have but it’s not going through.

Click here to view more cat photos.

<-- TODO: Add link to cat photos --> So Im not sure where to put the comment it keeps telling me it is in the wrong order.

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-->
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 15054.114.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36

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

Link to the challenge:

add a comment above the p element means to add a comment on the line above the line that has the paragraph element.
(right now your comment is -below- the paragraph element)

I am so sorry I dont think im understanding right

This is the p element code :point_up_2:t4:

Please add your code above it.
for eg:

   <!-- This is a comment above the p element -->
  <p>this is the p element</p>

Thank you so much for your patience. I got it!

1 Like

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