Introduction to HTML5 Elements - stuck on main tags

Tell us what’s happening:

I’m confused, I don’t know understand what they want me to do. Can someone help me?

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>

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements

You’ve almost got it.

<p2> is not a proper tag though. It doesn’t exist.
You can just use <p> tags again for the second paragraph.

1 Like

Thanks, I’ll do that! :smiley: