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 trialCatalina Torres
710 PointsImage is not showing
Hi,
The image is not displaying and I can't seem to find the issue. I try to look for extra spaces and case sensitive issues but I can't find the problem.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Catalina Torres | Designer</title> </head> <body> <Header> <a href="index.html"> <h1>Catalina Torres</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="about.html">Contact</a></li> </ul> </nav> </Header> <section> <ul> <li> <img scr="img/numbers-06.jpg" alt=""> </li> </ul> </section> <Footer> <p>Ā© 2015 Catalina Torres.</p> </Footer> </body> </html>
Thanks,
Catalina
1 Answer
Nicole Archambault
27,853 PointsHi Catalina!
I spot a typo. ;) It should be "src", not "scr". Fix this, and your code should work!
If my answer was helpful, please be sure to vote and select it as Best Answer. :)
Catalina Torres
710 PointsCatalina Torres
710 PointsOuch! Thank you so much. Problem fixed :)