Learn HTML by Building a Cat Photo App - Step 4

my comment should be above the p element and this is not understanding for me can you explain me whats mean above ‘p’ element?

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

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15

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

Link to the challenge:

hey can you just show me how wright this step?

Step 4

Commenting allows you to leave messages without affecting the browser display. It also allows you to make code inactive. 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 this text:

TODO: Add link to cat photos

<!-- this is a comment -->
<p>This is a paragraph</p>
1 Like

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