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 trialAliayub Ali
3,495 PointsGuys help!!!
I don't even know if this code makes sense.
<!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
Front End Web Development Techdegree Student 5,415 PointsHi 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>
Justin Nguyen
Front End Web Development Techdegree Graduate 13,005 PointsHi 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.
Aliayub Ali
3,495 PointsAliayub Ali
3,495 PointsAnd what you mean by that. please explain.