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 trialDavid Moorhead
18,005 PointsWhat element wraps the ul, h1 and p together as a group of introductory or navigational content?
<!DOCTYPE html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
<title>My Portfolio</title>
</head>
<body>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Work</a></li>
<li><a href="#">Contact</a></li>
</ul>
<h1>My Web Design & Development Portfolio!</h1>
<p>A site featuring my latest work.</p>
3 Answers
Matthew Garza
26,312 PointsI got it to work by wrapping the ul, h1, and p tags in a <header> tag. I went to the MDN site and looked up html elements, then did a page search of "introductory" and it showed me the <header> element.
Matthew Garza
26,312 PointsGreat, If there is anything else you need help with just let me know. Happy to help : )
David Moorhead
18,005 PointsMatthew, it worked over here, too! This is the only way I know to give you five stars *****. Thank You. I took a quick eye-scan at the MDN site too, but that wasn't enough, obviously. Now, I'll move on to the next Challenge. Wish me luck.
David Moorhead
18,005 PointsDavid Moorhead
18,005 PointsHello! The previous video explained the elements section, nav and aside. Although I thought <section> and/or <nav> would do the trick, neither did. Thinking and experimenting have made me fuzzy-headed. Thanks for your help.