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 trialChristopher McKinney
2,554 PointsWhat is going on? I'm not getting any clueing me into where the problem is. Codecademy is the exact same way.
What are they even trying to tell me to do? I'm confused.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nick Pettit</title>
</head>
<body>
<header>
<a href="index.html">
<h1>Nick Pettit</h1>
<h2>Designer</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section>
<nav>
<ul>
<li><a href=""><img src="numbers-01.jpg">&np</a></li>
<li><a href=""><img src="numbers-02.jpg"></a></li>
<li><a href=""><img src="numbers-06.jpg"></a></li>
</ul>
</nav>
</section>
<footer>
<p>© 2013 Nick Pettit.</p>
</footer>
</body>
</html>
2 Answers
Jack Davies
12,671 PointsYou don't need the anchor tags for the images
Mike Wagner
23,559 PointsThe Challenge description actually says not to add any links or captions to the images, however, simply removing the links won't be enough to complete the challenge. There is an erroneous &np
in your code in one of the anchor tags you need to ensure is removed also, as well as the unnecessary <nav>
element that you've wrapped the <ul>
with inside the section.
Jack Davies
12,671 PointsJack Davies
12,671 PointsYour syntax appears to be correct. 3 questions.
1) Have you tried refreshing the page and trying to complete the task? 2) What is the "&np" in the image list for 3) Have you tried giving the anchors that are empty a value of "#"?