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 Introduction to HTML and CSS (2016) HTML: The Structural Foundation of Web Pages and Applications HTML Lists

Miriam Allman
PLUS
Miriam Allman
Courses Plus Student 1,761 Points

my list still shows numbers despite the fact that the tag is <ul>

<ul> <li>I’m an aspiring web designer who loves everything about the web. I've lived in lots of different places and have worked in lots of different jobs.</li> <li>I’m excited to bring my life experience to the process of building fantastic looking websites.</li> <li>I’ve been a professional cook and gardener and am a life-long learner who's always interested in expanding my skills.</li> <li>Fourth list item</li> </ul>

2 Answers

Steven Parker
Steven Parker
229,783 Points

I would expect that some CSS or JavaScript not shown here is responsible for the numbering.

To facilitate a complete analysis, make a snapshot of your workspace and post the link to it here.

John Lack-Wilson
John Lack-Wilson
8,181 Points

<ol> is a tag for ordered list, i.e. it is ordered, therefore it is numbered.

<ul> is a tag for an unordered list. Using <ul> rather than <ol> will not give numbers, but it will give bullet points. The bullet points can be removed by adding some CSS.