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

Unable to validate paragraph within section tag!

So, I have attempted to validate my code using W3C Validator https://validator.w3.org/ . I kept getting errors for the paragraph inside the section tags. I get the following error:

"Warning: Section lacks heading. Consider using h2-h6 elements to add identifying headings to all sections."

Once I changed the <p> to <h2> it validated successfully without errors.

Is this something that changed with HTML5 syntax after the video?

2 Answers

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

No. Keep in mind that a warning is not an error. W3C is just pointing out that it's considered good practice to include a h1-h6 element (or headline) to give structure to your document. This helps screen readers and other software determine the importance of certain elements in the DOM.

Jennifer,

Awesome! Thanks for that wonderful explanation!