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 How to Make a Website Creating HTML Content Include External CSS

i have tried to link my html page with the css but why is it not removing the bullets ,they are still showing

i have tried to link my html page with the css but why is it not removing the bullets ,they are still showing , i did try it again and again . and is it possible to add the new file folder and how also when using the brackets

Alberto Martinez Pascual
Alberto Martinez Pascual
6,714 Points

Hello, could you also post the <link> tag, perhaps is the src attribute wrong?

Marcelo Pinto
Marcelo Pinto
10,198 Points

Hi Claudius,

Could you copy and paste both your HTML and CSS on your post?

In the HTML file, please paste the <link> element that makes the reference to your CSS file. In the CSS file, paste the rule that styles your unordered list, like "list-style-type". Hint: the value of this property should be set to "none".

Thanks.

2 Answers

savan patel
savan patel
2,272 Points

simply use this code below to remove bullets list

ol,ul{ list-style:none; }

thank you!

none of the answers work people