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 trialRausha Willis
Front End Web Development Techdegree Student 724 Pointshow do you add three elements between an <ul>
having a hard time with adding the elements between a unordered list
<!doctype html>
<html>
<head>
<title>List Example</title>
</head>
<body>
<ul>
<li> Egypt
<li> Isreal
</li> Germany
</ul>
</body>
</html>
3 Answers
Calin Bogdan
14,921 PointsHowdy!
Just like ul, each li element needs closing tags, like
<li>text</li>
You should try
<ul>
<li>Egypt</li>
<li>Israel</li>
<li>Germany</li>
</ul>
Per Schrijver
3,435 PointsA list item (li) should be written as <li>TEXT</li>.
Per Schrijver
3,435 PointsThe challenge requires you to have something like this:
<!doctype html>
<html>
<head>
<title>List Example</title>
</head>
<body>
<ul>
<li>Egypt</li>
<li>Isreal</li>
<li>Germany</li>
</ul>
</body>
</html>```
Rausha Willis
Front End Web Development Techdegree Student 724 PointsRausha Willis
Front End Web Development Techdegree Student 724 Pointsthankyou