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 trialLinda Robinson
Courses Plus Student 550 PointsI'm having trouble getting the images to show up in my browser. I've triple-checked the code and it matches yours! Help!
I've even substituted my own images, deleted the img folder and started over. I can view source on my browser and the code is there, but the images aren't showing up? This is for the image gallery as well as the SoMe icons for the footer.
Linda Robinson
Courses Plus Student 550 Points<section>
<ul>
<li>
<a href="img/numbers-01.jpg">
<img scr="img/numbers-01.jpg" alt="">
<p>Experimentation with color and texture.</p>
</a>
</li>
<li>
<a href="img/numbers-02.jpg">
<img scr="img/numbers-02.jpg" alt="">
<p>Playing with blending modes in Photoshop.</p>
</a>
</li>
<li>
<a href="img/numbers-06.jpg">
<img scr="img/numbers-06" alt="">
<p>Trying to create an 80's style of glows.</p>
</a>
</li>
<li>
<a href="img/numbers-09.jpg">
<img scr="img/numbers-09.jpg" alt="">
<p>Drips created using Photoshop.</p>
</a>
</li>
<li>
<a href="img/numbers-12.jpg">
<img scr="img/numbers-12.jpg" alt="">
<p>Creating shapes using repeition.</p>
</a>
</li>
</ul>
</section>
5 Answers
Andres Aguero
30,545 PointsYou misspelled src!
You spelled it scr, but the correct term is src
Andres Aguero
30,545 PointsThis is how you get an image to show
<img src="image-name-of-the-picture.jpg">
MAKE sure that the picture is in the same folder of your website file. If nothing shows up then there may be an error with your naming of the picture, or the folder directory
Linda Robinson
Courses Plus Student 550 Pointsarggh!! LOL. thank you so much. :-) Such a tiny detail and it made all the difference!
Andres Aguero
30,545 PointsNo Problem! It takes practice to get use to all the key terms :)
Linda Robinson
Courses Plus Student 550 PointsThank you so much. And you were so prompt to answer! :-)
Andres Aguero
30,545 PointsJust trying to get some points on answering peoples questions :-)
Ken Alger
Treehouse TeacherKen Alger
Treehouse TeacherLinda;
Welcome to Treehouse!
Can you post the code you are using? Please see this post for instructions.
Happy coding,
Ken