Learn HTML by Building a Cat Photo App - Step 5

Tell us what’s happening:
InStep 5 of the HTML course I was asked to identify the main section with the tag and the closing tag. I put it the way shown below. I was said, this was wrong and that I should put the closing tag below the p element. But in my opinion, thats exactly what I did?!?!

Your code so far

<html>
  <body>

<!-- User Editable Region -->

   <main> 
    <h1>CatPhotoApp</h1>
     <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
     <p>Click here to view more cat photos.</p> 
      </main>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 Edg/112.0.1722.64

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

Link to the challenge:

Your code passes on my side.
Try checking whether you have some extensions,or reset the lesson.

I tried it several times with several small changes (new line/same line with a blank, etc) but nothing happens. Is there a hint on a special format for this step? I guess, many users must have passed it since it is just step 5 :slight_smile:

Have you checked for any extensions?

Sorry, I don’t know what do you mean by “extensions”? I am very new to the topic…

A browser extension is a small software module for customizing a web browser.
To disable then,navigate to your browser settings,and search for extensions on the search bar.

The extension fix is not going to work for you because your code is not actually correct. You changed the text of the p element.

<p>Click here to view more cat photos.</p>

This is not the text that was given to you when you started the challenge. You need to reset to get the original text back

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