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

The code is correct, but it's still telling me that it's wrong. How can I get this section completed?

Thanks.

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>

    <h3>Level 3 Heading</h3>
    <p>Cotton candy topping halvah sugar plum gummies souffl&eacute;. Ice cream danish donut sugar plum. Macaroon carrot cake gummies. Caramels oat cake chocolate cake.</p>
  </body>
</html>

5 Answers

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Matthew,

If the code checker says it's wrong... it's usually because it is. :smirk:

Here, it's just a small syntax error you have. The paragraph for the 2nd heading has an opening <p> tag but no closing </p> tag. There is instead another opening one.

Just correct that error, and the code will be right and pass the challenge. :smiley:

Good work & Keep Coding! :dizzy:

Faoud Mohammed
Faoud Mohammed
1,348 Points

Dude your second paragraph where it begins "Ice cream candy" you forgot to close it off with the forward slash.

Strange, it told me that the 2nd part was right, but the 3rd one was wrong, hence my confusion. Thanks though.

Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

Yes, that is strange and misleading. It should have given a Bummer for the 2nd task with the proper closing tag absent. I understand the confusion this would cause. Tagging Guil Hernandez to have a look at the Quiz. :)

Jacob Clarke
PLUS
Jacob Clarke
Courses Plus Student 3,965 Points

Small syntax can be hard to see, but paying attention to detail is important to spot the small errors :)