Learn HTML by Building a Cat Photo App - Step 5

Can’t get over step 5. Can I get an example

<html>

<!-- User Editable Region -->

  <body>
   <h1><main>CatPhotoApp</main></h1>
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>See more cat photos in our gallery.</p>
    

<!-- 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/115.0.0.0 Safari/537.36

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

Link to the challenge:

Hello @codingforlife280 !
Try to read again the instructions, it may become clearer.
It is a bit tricky because the only two wrapping tags you saw at this point are <html></html> and <body></body>. These ones in your code are already quite good examples of what you have to do.
Here, you have to put your opening <main> tag before the h1 element (so, before the opening tag of h1 : <h1>) and your closing tag </main> after the p element (after the closing tag </p>).
I hope I have been helpful, please tell if it was enough or if you need more help !

1 Like