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 Build a Simple Website Text Editors and HTML Images and Lists

order list and unorder list

so im trying to write out about cupcakes and location. so its simple i think . but its saying list about first.

i put <ul>

<li>about <li>cupcake <li> location

in the <li> i even put the points. <a hrefm"s">

and closed it with </ul>

6 Answers

Joe Hirst
PLUS
Joe Hirst
Courses Plus Student 6,489 Points

Iā€™m not sure what your question is here...If you're trying to create unordered or ordered lists, they are written as:

 <ol>
    <li>first</li>
    <li>second</li>
    <li>third</li>
 </ol>

  <ul>
    <li>first</li>
    <li>second</li>
    <li>third</li>
  </ul>

I think we are talking about the same code challenge. There is no href in the one I'm looking at.

<body>

    <img src="img/cupcake.jpg">
    <ul>
      <li>About</li>
      <li>Cupcakes</li>
      <li>Locations</li>
    </ul>

  </body>

Its asking to add. Empty unordered list below the image , i put the image in already , I wrote <Ul> </ul> But the treehouse system said to put a ul tag I dont understand it

Hi christopher,

Is this what you are referring to?

Jeff

<body>

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

  </body>

yea i got that part so now im on the last step <ul> <ul> <a hrefm"s">about <ul> <a hrefm"s">cupcake <ul> < a herfm"s">location </ul>

but it wont take it

< ul > then the <a herfm"s"> then the cupcake

i been doing that, but its telling me to

add three list elements to the ordered list

thank you for your help, i been working on this for an hour trying to figure it out