Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML HTML Basics Getting Started with HTML Headings and Paragraphs Challenge

i dont get this please help me im new

please give me some answers im doing everything right i think.

index.html
<!DOCTYPE html>
<html>
  <head>
    <link href="styles.css" rel="stylesheet">
    <title>Headings and Paragraphs</title>
  </head>
  <body>
    <h1><p>This is the Main Headline!  
    Oat cake chocolate bar jelly. Tootsie roll cheesecake sweet gummies candy cookie pudding cotton candy carrot cake. Souffl&eacute; caramels brownie oat cake cheesecake.
      </p>
    </h1>
   <p> Level 2 Heading 
    Ice cream candy canes muffin icing pudding muffin jelly topping carrot cake. I love gingerbread dessert jujubes bonbon cupcake tootsie roll I love. Oat cake topping caramels I love cupcake oat cake chocolate topping donut.
    </p>
    Level 3 Heading
    Cotton candy topping halvah sugar plum gummies souffl&eacute;. Ice cream danish donut sugar plum. Macaroon carrot cake gummies. Caramels oat cake chocolate cake.
  </body>
</html>

2 Answers

Look at your first <h1> tag. Your main headline is actually within <p> paragraph tags.
For your > Level 2/3 Headings, place them between html <h#> tags.

For example,

  1. <h1>This is my main headline.</h1>
  2. <p>blah blah blah</p>

1st Mistake

In line 15 or the 3rd headline you missed the <h3> tags so wrap the 3rd headline with the h3 tags

2nd Mistake

below the 3rd headline you missed the <p> tags so wrap the text below the 3rd headline with <p> tags

3rd Mistake

In the first Headline wrap the main headline with <h1> tags but after the main headline wrap the text with <p> tags and don't forget deleting the <p> tags in the main headline . In the main headline you should put <h1> tags

4th Mistake

in the second headline you missed the <h2> tags. And don't forget deleting the <p> tags in the second headline. After the second headline wrap the text with <p> tags.