I'm having a hard time understanding step 4 I plug in for (p) but it keeps on saying that I have extra opening/closing comments

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <!-- TODO: Add link to cat photos -->Click here to view more cat photos.<!--/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/102.0.5005.63 Safari/537.36 Edg/102.0.1245.30

Challenge: Step 4

Link to the challenge:

hi ! it seems you added an extra comment and thats why its not working correctly !

I know but where lol

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <!-- TODO: Add link to cat photos >Click here to view more cat photos. 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/102.0.5005.63 Safari/537.36 Edg/102.0.1245.30

Challenge: Step 4

Link to the challenge:

HI @rivera !

I would reset the lesson because you have a few errors here

The challenge wants you to add the comment tag above the p element.
And inside that comment should be text

TODO: Add link to cat photos

Hope that helps!

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <h2>Cat Photos</h2>
  <!-- TODO: Add link to cat photos -->Click here to view more cat photos.<!--/ 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/102.0.5005.63 Safari/537.36 Edg/102.0.1245.30

Challenge: Step 4

Link to the challenge:

You are getting closer.

This part is correct.

The issue is that you are not supposed to touch the p element at all.
That is why you are still failing this test.

Reset the lesson.
Do not touch the p element at all.

Above the p element place your comment tag.

make sense?

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