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 trialEric Pittarelli
171 PointsCan someone tell me what I'm doing wrong here?
On one of the quiz questions, it says to: Link each of the three list items. Portfolio should go to “index.html”, About should go to “about.html”, and Contact should go to “contact.html”
So I did the following:
<ul>
<li><a href=”index.html”><a/></li>
<li><a href=”about.html”><a/></li>
<li><a href=”contact.html”><a/></li>
</ul>
...and it told me it is incorrect. Can anyone tell me what I am doing wrong here? Thx!
<!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>
</header>
<section></section>
<footer>
<p>© 2013 Nick Pettit.</p>
</footer>
</body>
</html>
3 Answers
Eric Pittarelli
171 PointsSo it should be as follows?
<ul> <li><a href=”index.html”><a/> <li><a href=”about.html”><a/> <li><a href=”contact.html”><a/> </ul>
Erika Richards
6,231 PointsHi Eric,
the closing anchor should be the following
<li><a href="index.html"></a></li> <li><a href="about.html"></a></li> <li><a href="contact.html"></a></li>
Rebecca Vonada
5,274 PointsYou've closed your links incorrectly; it should be:
</a>
not
<a/>
That should fix it up for you.
Eric Pittarelli
171 PointsGot it! Thx!!! I had my "/" in the wrong place!
Erika Richards
6,231 PointsErika Richards
6,231 PointsHi!!
at first glance I see that you are closing the anchor tag incorrectly here is the correction:
<ul> <li><a href="index.html"></a></li> <li><a href="about.html"></a></li> <li><a href="contact.html"></a></li> </ul>
I hope this helps!!!