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

Janna Satska
Janna Satska
331 Points

Is it some internal error? The task won't let me to go forward despite I have <h3>Heading</h3> and paragraph properly.

Is it some internal error? The task won't let me to go forward despite I have <h3>Heading</h3> and paragraph properly.

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. </p>
    <p>I love gingerbread dessert jujubes bonbon cupcake tootsie roll I love. </p>
    <p>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;.</p>
    <p>Ice cream danish donut sugar plum. Macaroon carrot cake gummies.</p>
    <p>Caramels oat cake chocolate cake.</p>

  </body>
</html>

1 Answer

Daniel Montgomery
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree seal-36
Daniel Montgomery
Treehouse Staff

Hi Janna Satska ,

I believe the error you're encountering is due to how the paragraph tags (<p>) are used in your code, even though the error message mentions the H3 tags. Your H3 tags are actually placed correctly.

The issue occurs because you're wrapping each sentence with its own <p> opening and closing tags. Instead, it would be best to wrap the entire paragraph under each H2 and the H3 heading with a single set of <p> tags.

So, place an opening <p> tag at the start of the paragraph and a closing </p> tag at the end of the paragraph.

When I made this adjustment to your code, it passed validation every time. I hope this helps, and sorry for any confusion!