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 trialLeniel Martinez
Front End Web Development Techdegree Student 3,042 Pointscan someone help me with semantics in html
I just watched the video on semantics in html, that is <section>, <article> ... but I still do not understand
1 Answer
Steven Parker
231,248 PointsDid you have a question about the particular usage of the elements? Please elaborate if so.
But if your issue is just getting used to the terminology involved, perhaps this little "semantic element summary" will help:
- "a group of introductory content" <header>
- "a major section of navigation" <nav>
- "the main content of the <body> of the page" <main>
- "standalone sections of content" <section>
- "self-contained pieces of content" <article>
- "content that's indirectly related to the main content of the page" <aside>
- "information about the site, copyright data or related links" <footer>