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

Newbie with Spacing Problems While Adding Unordered Items

Hey all! I am a complete noob and am a little stuck. I currently working on rebuilding the "Smells Like Bakin" site but have run into a problem. I am tasked to first add an unlisted item. Now I am tasked to add three list items but for some reason I am getting extra bullet points added within the script. Instead of it being -XXX -XXX -XXX It appears as

-XXX

-XXX

-XXX my code seems fine but I can't move on to the next level :( Any help would be great! BTW - I am sorry if I have explained this in a crappy way, I have only been at this for a day and a bit now! Thanks in advance

2 Answers

Marcus Tisäter
Marcus Tisäter
4,886 Points

This is how you code a unorderd list

<ul>
 <li>Item1</li>
 <li>Item2</li>
</ul> 

I think you need to take a look at how "how to make lists" in html, there are great guides outside treehouse such as www.w3schools

Tom Bedford
Tom Bedford
15,645 Points

Some say the usefulness of w3schools is questionable.

Marcus Tisäter
Marcus Tisäter
4,886 Points

People are just jealous... lol

James Barnett
James Barnett
39,199 Points

W3schools has serious issues with outdated content. Also the fact they are often confused with the W3C and have no affiliation and refuse to note this on their site seems kinda unethical.

Thanks guys for your help. For some reason when I started the track over again everything worked fine!