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

Nelson Cole
Nelson Cole
1,423 Points

Adding normalize.css did not remove the bullet points from portfilo, about and contact links

Here is my code and normalize.css is nested in my css folder

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Nelson Cole | Designer</title> <link rel="stylesheet" href "css/normalize.css" </head>

4 Answers

Michael Afanasiev
PLUS
Michael Afanasiev
Courses Plus Student 15,596 Points

Hi Nelson,

Your code is fine but missing an equal sign = after the href and a closing tag.

Hope that helps!

Jeff Lemay
Jeff Lemay
14,268 Points

Pretty sure the videos use an older version of normalize.css that included list-style:none, whereas the version you are using does not remove bullet points by default. If you want them removed, add this to your custom stylesheet:

ul {
  list-style: none;
  /* if you want to remove the indentation, add this: */
  padding-left: 0:
}
Ferdinand Pretorius
Ferdinand Pretorius
18,705 Points

Hi Nelson,

Can you post your html code please so we can work out why it hasn't been removed. Note that normalize.css will only remove bullet points if your list items is inside an orderered/unordered list which is also nested inside a nav element.

Nelson Cole
Nelson Cole
1,423 Points

Michael

That was it.

Thank You Nelson