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 HTML Lists HTML Lists

Guys help!!!

I don't even know if this code makes sense.

index.html
<!DOCTYPE html>
<html>
  <head>
    <title>HTML Lists Challenge</title>
  </head>
  <body>

    <h1>HTML Lists Challenge</h1>

    <!-- Write your code below -->
    <ol>
      <li> Stop</li>
      <li> Drop</li>
      <li> Roll</li>
    </ol>
<ul> 
  <li> Shapes </li>
  <li> Colors </li>
    </ul>

  </body>
</html>

2 Answers

Gedalya Krycer
seal-mask
.a{fill-rule:evenodd;}techdegree
Gedalya Krycer
Front End Web Development Techdegree Student 5,415 Points

Hi Aliayub Ali,

Your code looks pretty good. The only thing that jumped out is that your first <ul> element is not nested. Please see below for a tweaked render.

<!DOCTYPE html>
<html>
  <head>
    <title>HTML Lists Challenge</title>
  </head>
  <body>

    <h1>HTML Lists Challenge</h1>

    <!-- Write your code below -->
    <ol>
      <li> Stop</li>
      <li> Drop</li>
      <li> Roll</li>
    </ol>
    <ul> 
      <li> Shapes </li>
      <li> Colors </li>
    </ul>

  </body>
</html>

And what you mean by that. please explain.

Justin Nguyen
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Justin Nguyen
Front End Web Development Techdegree Graduate 13,005 Points

Hi Ali,

Your code should work fine @Gedalya Krycer means to look at the indentations of your <UL> tags and look at his. They should be aligned with the <ol> tags.