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 trialMOhammad Abdah
493 PointsI 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?
<!doctype html>
<html>
<head>
<title>List Example</title>
</head>
<body>
<lu>
<li>the first one</li>
<li>the one here</li>
</lu>
</body>
</html>
2 Answers
Jennifer Nordell
Treehouse TeacherHi 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!
MOhammad Abdah
493 PointsThanks
Todd Anderson
4,260 PointsHi!
You have the l and u backwards. :) try <ul></ul>
matthew glen
14,153 Pointsmatthew glen
14,153 Pointsnearly got it, try putting <ul> instead of <lu>