Introduction to HTML5 Elements 0

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>

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

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

Your browser information:

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

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

Look their is no tags like <p1> or <p2> so Please don’t use.

only the Paragraph tag is <p> content </p>

1 Like

<p></p>, these together make a single paragraph, when they say to create two paragraph elements, it means, two times <p></p>, and add the relevant content between opening and closing tags

You can remove the numbers in the p tags, its wrong syntax

1 Like

Just use <p> </p> instead of <p1> </p1> and <p2> </p2>

1 Like

Thank you ! This is very helpful. :smile: