I'm confused on adding a comment above the p element

Tell us what’s happening:
Describe your issue in detail here.
Here’s what the problem is asking:
" A comment in HTML starts with <!-- , contains any number of lines of text, and ends with --> . For example, the comment <!-- TODO: Remove h1 --> contains the text TODO: Remove h1 .

Add a comment above the p element with the text TODO: Add link to cat photos ."

  **Here's what I have so far. I thought I was commenting correctly, but I guess not...**

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

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36

Challenge: Step 4

Link to the challenge:

1 Like

Why are there extra "<" and ">" inside the paragraph tag?
Removing them passes the tests for me.

1 Like

Thank you. I appreciate your help.

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