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 trialveronica 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,373 PointsYeah like Javier said on your img
tag you made a typo error on the src
attribute which stands for "source"