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
Alizee Le Reun
1,455 PointsCreate a navigation element with an unordered list element after the link inside the header. Don’t add any list items or
Create a navigation element with an unordered list element after the link inside the header. Don’t add any list items or links just yet.
4 Answers
Tyler Groskreutz
14,793 Points<nav>
<ul>
</ul>
</nav>
</header>```
Gonzalo Torres del Fierro
Courses Plus Student 16,751 Points<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Nick Pettit</title> </head> <body> <header>
<a href="index.html">
<nav>
<ul>
<li><a> unordered </a></li>
</ul>
</nav>
<h1>Nick Pettit</h1>
<h2>Designer</h2>
</a>
</header>
<section></section>
<footer>
<p>© 2013 Nick Pettit.</p>
</footer>
</body> </html>
Gonzalo Torres del Fierro
Courses Plus Student 16,751 Pointsthis can be help, i learned that i have to read better....:-)
Paul Dietrich
4,557 PointsFollowing with the directions:
<header>
<nav>
<a href="#"></a>
<ul>
</ul>
</nav>
</header>
The above shows a "nav" element that contains an unordered list (without list items), and after a link.
Nathon Reed
4,810 Points<header> <a href="index.html"> <h1>Nick Pettit</h1> <h2>Designer</h2> </a> <nav> <ul> <li></li> </ul> </nav> </header>
Muhamed Asil
7,453 PointsNathon Reed is right