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 trialAngilina Gardi
4,311 PointsI can't get past a question that I keep getting wrong and it's very annoying. Can you all add a skip question?
I have attempted several times to get the answer right, but it's incorrect. But I can't continue the course, because there is no way of getting past the question. very time wasting. How do I move on to the next question,
<!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>
<ul>
<li>
<img src="imgs/numbers-01.jpg" alt="">
</li>
<li>
<img src="imgs/numbers-02.jpg" alt="">
</li>
<li>
<img src="imgs/numbers-06.jpg" alt="">
</li>
</ul>
</section>
<footer>
<p>© 2013 Nick Pettit.</p>
</footer>
</body>
</html>
2 Answers
Michael Afanasiev
Courses Plus Student 15,596 PointsHi Angilina,
Since you did not say if you are stuck on task number 1 or 2 I will give you the full answers to complete this challenge:
Step 1 - create an unordered list with three blank list items (Do not add any images):
<section>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</section>
Step 2 - Inside those 3 list items you now must add the images. (at the code challenge the path to images is not from the img folder) so you must do the following:
<section>
<ul>
<li><img src="numbers-01.jpg" alt=""></li>
<li><img src="numbers-02.jpg" alt=""></li>
<li><img src="numbers-06.jpg" alt=""></li>
</ul>
</section>
You should now be able to complete the challenge, hope this helps!
Ryan Hunt
16,091 PointsYou want to just have 3 blank list items like this:
<section>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</section>
It's probably giving you an error because of the src links
Angilina Gardi
4,311 PointsThanks, Ryan. I got that part. It was adding the images where I was having trouble. But Michael answered it. I appreciate your help.
Angilina Gardi
4,311 PointsAngilina Gardi
4,311 PointsThank you so much Michael. I see from your code what I was doing wrong. I was putting <a in front of img. :)
Angilina Gardi
4,311 PointsAngilina Gardi
4,311 PointsActually I was calling out the folder .. that's what I was doing wrong. The <a> goes in front of the link. But I just tried it and it worked. Thank you for your help. :)
elk6
22,916 Pointselk6
22,916 PointsHi Angilina,
For future use, don't forget to mark an answer as "best answer" if someone helped you out. People get extra points for a best answer.
In this case, I already marked Michael's answer as best. :)
Michael Afanasiev
Courses Plus Student 15,596 PointsMichael Afanasiev
Courses Plus Student 15,596 PointsGlad I could help Angilina!
Elian, thank you! :)