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

Not sure what I'm doing wrong on HTML Basics, Challenge Question 2/3

I believe my <h2></h2> elements are fine, but I keep getting an error message. Thank you!

index.html
<!DOCTYPE html>
<html>
  <head>
    <link href="styles.css" rel="stylesheet">
    <title>Headings and Paragraphs</title>
  </head>
  <body>
    <h1>This is the Main Headline!</h1>  
    <p>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>

    <h2>Level 2 Heading</h2>
    <p>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>

4 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You're doing just fine. Yes, your h2 elements are correct. To be fair, I'm not sure exactly how this passed the challenge checker for Step 1. The problem here is in that two instances you've started a paragraph with a <p> tag, but then ended it with a <p> tag. This is creating an error as the paragraphs should be closed with a </p> tag. So, it can't make it to your h2 because the error occurs before the h2 is even shown.

Hope this helps! :sparkles:

I notice, Your <p> tag is not ended using proper HTML closing tag format. For e.g., <p>Lorem ipsum</p>. Let me know if this solves the error.

Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Tej! I took the liberty of converting your comment to an answer to allow for voting. :sparkles:

Thanks everyone! That worked great! :)