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 Introduction to HTML and CSS (2016) HTML: The Structural Foundation of Web Pages and Applications Test: Create an Unordered List

I am trying to do unordered list but its seems not working why?

I have done the same video for unordered list but its still not working Why?

index.html
<!doctype html>
<html>
  <head>
    <title>List Example</title>
  </head>
  <body>
    <lu>
      <li>the first one</li>
      <li>the one here</li>
    </lu>

  </body>
</html>
matthew glen
matthew glen
14,153 Points

nearly got it, try putting <ul> instead of <lu>

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You've reversed the "l" and "u". You've typed <lu> and </lu> but you meant to type <ul> and </ul>.

Hope this helps! :sparkles:

Thanks

Todd Anderson
Todd Anderson
4,260 Points

Hi!

You have the l and u backwards. :) try <ul></ul>