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 trial
Andrew Vazquez
432 PointsUnordered Lists
I am attempting to complete the challenge involving inserting an un-ordered list under images. I keep getting a bummer error. Nothing works. I've put in the code a bunch of different ways even tried copying and pasting the code directly from the code on codepen and nothing...
2 Answers
Chase Lee
29,275 PointsYou forgot to close your img tag like this:
<img src="img/cupcake.jpg">
Jacob Miranda
19,392 PointsPost your code and the instructions pretty please
Andrew Vazquez
432 PointsDirections: Add an empty unordered list below the image.
Code:
<body>
<img src="img/cupcake.jpg"
<ul>
<li></li>
<li><li>
</ul>
</body>
Jacob Miranda
19,392 Pointsyour code isn't appearing
I believe what I did was add the ul element with 3 empty list items which would look like
<ul>
<li></li>
<li></li>
<li></li>
</ul>
Kenneth Warren
2,813 PointsKenneth Warren
2,813 Pointsditto
Cristian Leat
9,014 PointsCristian Leat
9,014 PointsTo make it even clear for you Andrew, you haven't closed the img tag using ">"
Andrew Vazquez
432 PointsAndrew Vazquez
432 PointsThank you so much! I closed the image tag and everything worked smoothly. Appreciate it!