Introduction to HTML5 Elements - stuck on exercise about <main>

Tell us what’s happening:

Hey

I got this so far

Everything checks out except for that it tells me:

The opening main tag should come before the first paragraph tag.
And

The closing main tag should come after the second closing paragraph tag.

Which seems to be the case to me

Anyone can help me out with this?

Your code so far


<h2>CatPhotoApp</h2>
<Main>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>

<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</Main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0.

Link to the challenge:

While HTML tag names are technically case insensitive, the convention is to always use lowercase. In this challenge, the tests are case sensitive.

1 Like

Thank you very much sir.

I reset the code and redid the exercise, changing both “main” variations to lower case and it now works.

2 Likes