The particular challenge you’ve linked to doesn’t require the insertion of an image. Do you have another challenge that you’re having trouble with that you could link to?
With regards to this challenge, looks like your paragraph elements are nested within the main just fine. The only issue I see is that your paragraphs are duplicated where you should have two paragraph elements containing different text.
Please read the challenge carefully. Don’t read it as a single paragraph. Break it down.
<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>
You were asked to make a second paragraph.
You were asked to copy and paste the given text in the newly created para.
You were asked to nest i.e. place both the paragraph elements inside the main element.
p.s. They did not asked to insert an image as of now in this code.