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 One Solution

Shifat Kabir
Shifat Kabir
5,443 Points

Why <section>?

Why use <section> in about content? Why not <article>?

1 Answer

Steven Parker
Steven Parker
229,785 Points

According to MDN:

The HTML <article> element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). Examples include: a forum post, a magazine or newspaper article, or a blog entry.

While not stated explicitly, I'd guess this content was judged to not qualify as "independently distributable", so it was placed in the generic <section> element instead.

Shifat Kabir
Shifat Kabir
5,443 Points

Thank you Steven Parker, Its little bit more clear for me now...