Learn HTML by Building a Cat Photo App - Step 5

Tell us what’s happening:
Describe your issue in detail here.
I don’t know how to create an opening and close tag.
Your code so far

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

Your browser information:

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

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

Link to the challenge:

In this code for example you can see how opening and closing tags are created.

The opening tag is the one in angled brackets like <h1> and the closing tag is the one with the slash

ohh okay I created the opening the tag but it seems that I missing something in the cold it saying that my main element should have a closing tag. I tried putting the closing tag for the main element but keep showing up as not correct. Please help me.

Can you tell me where you placed your closing tag?

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

I have place the closing tag at the end where it says click here to view more cat photos.

Remember that the closing tag should look like this

</main>

Just exactly the same as an opening tag but with a slash in front of the word

I did what you told me for the main element and is still showing up as incorrect.

Can you copy and paste all the code here? (From the top to the very bottom)

okay here my code.

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

Please try to copy all the code. You are only showing me part of it. Place your mouse on the very first line at the very top and drag it down all the way to the last line and then copy.

(post deleted by author)

I still can’t see where you have placed the main closing tag? Recall it looks like this </main>