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 trialAndrew Rice
166 Pointsif i leave the 2 "" after the alt= i see words but no pictures, if i remove 1 of them i see 3 pictures but no paragraph
mine seems to be the same as nicks and just the one picture worked. Not sure what to do.
Andrew Rice
166 Points<li> <a href="img/numbers-01.jpg> <img src="img/numbers-01.jpg" alt=""> <p>Experimentation with color and texture</p> </a> </li> <li> <a href="img/numbers-02.jpg> <img src="img/numbers-02.jpg" alt=""> <p>playing with blending modes in photoshop</p> </a> </li> <li> <a href="img/numbers-06.jpg> <img src="img/numbers-06.jpg" alt=""> <p>Trying to create an 80's style of glows</p> </a> </li> <li> <a href="img/numbers-09.jpg> <img src="img/numbers-09.jpg" alt=""> <p>drips created using photoshop</p> </a> </li> <li> <a href="img/numbers-12.jpg> <img src="img/numbers-12.jpg" alt=""> <p>creating shapes</p> </a> </li> </ul> </section> <footer> <p>© 2015 Andrew Rice.</p> </footer> </body> </html>
2 Answers
Jacob Jonsson
21,385 PointsHi, You are missing a " in each href above the img tag.
Andrew Rice
166 Pointsyep thank you, i see it now.
Curtis Murley
2,766 PointsIt is difficult to answer your question without reading over your code. My best guess would be that you have a " that doesn't belong.
Be sure to start at the beginning of your code and scan for "'s as you see one be mindful of where it opens and where it closes. Chances are what you think is an opening " is actually closing a prior "
Kristopher Van Sant
Courses Plus Student 18,830 PointsKristopher Van Sant
Courses Plus Student 18,830 PointsCan you post your code please? This way we can see what's going in the surrounding code.