Im stuck here cant seem to figure out this lesson on Main?

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

  **Your code so far**

<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> Kitty ipsum </P>
<main>
<h1> Hello World </h1>
<p> Kitty ipsum </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

Challenge: Introduction to HTML5 Elements

Link to the challenge:

Hi @pohoiki,

You added too much tags into the code. The challenge asks to create another paragraph (with p tag then), and, nest the existing paragraph, plus the one you just created with the text precise in the challenge into a main tag that you need to had.

Example of the course for the main tag:

<main> 
  <h1>Hello World</h1>
  <p>Hello Paragraph</p>
</main>

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