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 trialMokanye Tumelo Tricia
9,981 PointsRemember to including a closing tag after each list item.
<!DOCTYPE html>
<html>
<head>
<title>Lists and Links</title>
</head>
<body>
<ul>
<li>Cakes.html</li<a>
<a href="https://teamtreehouse.com">treehouse</a>
<li><a href="cats.html">cats</a>
<li><a href="dogs.html">dogs</a>
<li>pies.html</li<a>
<a href="https://teamtreehouse.com">treehouse</a>
<li><a href="cats.html">cats</a>
<li><a href="dogs.html">dogs</a>
<li>Candy.html</li<a>
<a href="https://teamtreehouse.com">treehouse</a>
<li><a href="cats.html">cats</a>
<li><a href="dogs.html">dogs</a>
</ul>
</body>
</html>
1 Answer
Rich Donnellan
Treehouse Moderator 27,696 PointsBe sure to close each element (e.g. </li>
). There are quite a few instances where you failed to do so.
Mokanye Tumelo Tricia
9,981 PointsMokanye Tumelo Tricia
9,981 Pointswhere? am trying but i dont see
Mokanye Tumelo Tricia
9,981 PointsMokanye Tumelo Tricia
9,981 Pointsplease help
Rich Donnellan
Treehouse Moderator 27,696 PointsRich Donnellan
Treehouse Moderator 27,696 PointsI see multiple lines with incorrect syntax similar to this:
<li>Cakes.html</li<a>
Be sure that each element has a matching open and close (e.g
<li></li>
).