<!DOCTYPE html>
<html>
<body>
<h2>CatPhotoApp</h2>
<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 evrywhere rip the couch sleep in the sink fluffy fur catnip scratched</p>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36.
So the instructions for this challenge are:
Create a second p element after the existing p element with the following kitty ipsum text: Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
Wrap the paragraphs with an opening and closing main tag.
The bolded part is what 4-7, that your having issues, is about.
So you added the second p tags (or elements as they are calling them), be careful that you copied the text exactly as their example because that can mess you up. Like i see a space between your opening p tag and your text.
Then they’re saying to take your two p elements ( the ones you already have with the kitty ipsum text in them) and wrap them in a main tag.
Thnx, In lesson they put that main elements are section, header, … but not the main as element. It makes a loop since main is not in the description as an element.