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

here after i download the normalize.css file and extract all the file ....i dont find normalize.css file in it

please help i work in windows environment

6 Answers

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

Hi Divya,

Where do you download and extract the file? once you extract did you make sure you don't have a folder named normalise.css?

nope i don't see normalize.css

i downloaded from the link from treehouse and then i extracted it from zip file

Michael Afanasiev
Michael Afanasiev
Courses Plus Student 15,596 Points

Yes but yet again, I'm going to ask to be more clear perhaps, WHERE do you choose to extract it? which folder it has been extracted to? (make notice)

I tested it both Windows and OSX machines, it works fine for me.

I believe you just don't notice where you extract it to and you lose track of it, I might be wrong though.

Try to give more details, even a screenshot would probably do magic here! :)

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

      </head>
<body>
<header> 

  <a href=" index.html">
  <h1> Divya</h1>
  <h2>Holiday destination </h2>
  </a>
  <nav>
    <ul> <li> <a href= "index.html"> Portfolio </a> </li> 
      <li><a href=" about.html"> About </a> </li>
       <li><a href=" contact.html"> Contact </a></li>      
  </ul>
  </nav>
  </header>
  <div id="wrapper">
  <section> 
    <ul>
        <li>
          <a href="img/numbers-01.jpg">
           <img src="img/numbers-01.jpg" alt="">
           <p >experimentation on picture </p>
          </a>
      </li>
      <li>
          <a href="img/Saathvik.jpg">
           <img src="img/Saathvik.jpg" alt="">
           <p >playing with saatvik </p>
          </a>
    </li>
    <li>
        <a href="img/numbers-02.jpg">
         <img scr="img/numbers-02.jpg" alt="">
         <p >vishesh </p>
        </a>
      </li>
      <li>
          <a href="img/numbers-06.jpg">
           <img src="img/numbers-06.jpg" alt="">
           <p >keerthan </p>
          </a>
      </li>
      <li>
          <a href="img/numbers-12.jpg">
           <img src="img/numbers-12.jpg" alt="">
           <p >divya </p>
          </a>
      </li>  
           </ul>
  </section>
  <footer>
    <a href="https://www.facebook.com/solomon.divya">
            <img src="img/facebook-wrap.png" alt="Facebook Logo"></a>
    <p> &copy; 2016 Divya</p></footer>
  </div>
</body>

</html>

now when i run it the bullet points still exsists

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

Normalize.css will not remove your bullet points, you must do it manually using your CSS by adding list-style: none to your UL or OL. (Unordered List and Ordered List).