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 trialLouis Espinoza
1,192 PointsShould we place a header element around the <h2>Latest VR Articles</h2>
Inside of index.html we have h2 element nested inside a section element
<h2>Latest VR Articles</h2>
would it be appropriate to place header tags around the h2?
<header>
<h2>Latest VR Articles</h2>
</header>
1 Answer
Jordan Howlett
4,377 PointsThe header tag is like a div but more specific and more readable. You can organize the content in the header whichever way you please. Other acceptable ones are paragraph tags.