Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

veronica maslova
1,849 PointsWhy are my images broken?
Why are my images broken + no fb logo? I can't see my mistake(
here's my code
</header> <section> <ul> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> <p>Something really beautiful</p> </a> </li> <li> <a href="img/numbers-2.jpg"> <img src="img/numbers-2.jpg" alt=""> <p>Another pretty picture</p> </a> </li> <li> <a href="img/numbers-6.jpg"> <img src="img/numbers-6.jpg" alt=""> <p>Look! I'm writing a code!</p> </a> </li> </ul> </section> <footer> <a href="https://www.facebook.com/veronica.maslova.9"><img scr="img/facebook-wrap.png" alt="Facebook Logo"></a> <p>© 2014 Nick Pettit teacher.</p> </footer> </body> </html>
2 Answers

Javier Gandia
Full Stack JavaScript Techdegree Student 9,153 PointsHey there! Ok, so for your FB logo img, you have <img scr="img/facebook-wrap.png" alt="Facebook Logo"> u misspelled the src=". and as for the images.. make sure the folder name and pictures you're using are written exact.. if its spelled a little different or if the folder is named differently, it won't give u an image.. hope this helps..

Christopher Debove
Courses Plus Student 18,372 PointsYeah like Javier said on your img
tag you made a typo error on the src
attribute which stands for "source"