Introduction to HTML5 Ele

Tell us what’s happening:

Need help with intro to HTML5.
Saying to wrap HTML5 around two paragraphs and i have done that and something is going wrong.

Your code so far



<h5><p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball runp 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> </h5>

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1.

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

The <h5> tag is a header tag. I think you want the <main> tag.

Wrap the paragraphs with an opening and closing main tag.

the <h5> tag is not the same as the <main> tag

The main tag tells the browser that the upcoming section is the “main” content of the page.
The h5 tag tells the browser that you want a header type 5 (which is a fairly small font).

two different things. Review the instructions to see what they need and follow them carefully.

Alrighty thank you so much :wink: