I am having problem in inserting picture in html and nesting an existing a elemnt in anew paragraph

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

<h2>CatPhotoApp</h2>

<main>
<p>kitty ipsumurr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink
  fluffy fur catnip scratched</p>
<p>kitty ipsumurr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink
  fluffy fur catnip scratched</p>
</main>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36 Edg/98.0.1108.56

Challenge: Introduction to HTML5 Elements

Link to the challenge:

Was there a line in the instructions that you did not understand? What have you tried?

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>
  1. You were asked to make a second paragraph.
  2. You were asked to copy and paste the given text in the newly created para.
  3. 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.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.