Not understanding what to do now i cant run

Tell us what’s happening:

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 jum 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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36.

Challenge: Introduction to HTML5 Elements

Link to the challenge:

1 Like

Hi there,

There is an error in the 2nd paragraph; you should check that out, and hope this helps!

You have to create a second p element and put the text given in the problem. Also you have to wrap two p tags inside a main tag . Here how you do this

<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>

Welcome @ankitgajghate,

It’s good to have you here :slight_smile:

With regards to your problem, you have an incorrect spelling i.e. typo.

I always find that when a challenge presents you with some text to include in your solution, it is always best, imho, to copy and paste the text given and becareful to include the last punctuation mark if there is one.

Try copy and pasting the text (given to you in the challenge) into your solution and then undo & redo your paste action to toggle between before and after. That’s how I found your problem.

Hope this helps.

LT