Learn HTML by Building a Cat Photo App - Step 4 I am starter and I can not found this. Please help me

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

Your code so far

<html>
  <body>
<!--pTODO: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/107.0.0.0 Safari/537.36

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

Link to the challenge:

hi there, welcome to the forum.

To fix this code please click the reset button
this will return the code back to the initial state (this is needed because you have deleted some code that you need).

After that, without deleting anything, simply add the requested comment on a new line above the paragraph element.

Let us know if you need more help after trying this.

1 Like

I can’t understand what the paragraph element means

the paragraph element is everything that is between the opening and closing p tag
<p>this is a paragraph element example</p>

Thanks a lot for your feedbacks

is it so? if it is not so, can you write this code for me, please?

Let me show you an example instead.

Let’s say you have this code

<body>
  <h1>I like to teach</h1>
  <!-- This is a comment above the p element -->
  <p>But sometimes it is hard</p>
  <!-- Don't tell anyone, but this is a comment below the p element -->
</body>

Above I have some code made up of a body element which nests inside it an h1 element followed by a comment, followed by a p element (paragraph element), followed by another comment.

This example is to show you how comments are added to code.
In my case I have 2 comments. One is above the p element and one is below it.

For -your- step though, they want a comment above the p element.
So please restart the step one more time.
(click the reset button)
Then this time, without deleting anything, add the requested comment
above the p element.

Thanks for everything

1 Like

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