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

HTML

Unordered 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

You forgot to close your img tag like this:

<img src="img/cupcake.jpg">

ditto

To make it even clear for you Andrew, you haven't closed the img tag using ">"

Thank you so much! I closed the image tag and everything worked smoothly. Appreciate it!

Jacob Miranda
Jacob Miranda
19,392 Points

Post your code and the instructions pretty please

Directions: Add an empty unordered list below the image.

Code:

   <body>
      <img src="img/cupcake.jpg" 
    <ul>
    <li></li>
    <li><li>
  </ul>
  </body>
Jacob Miranda
Jacob Miranda
19,392 Points

your 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>