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

CSS

Is there something wrong with my css link to html? Because it's not working.

<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Lake Tahoe</title> <link rel="stylesheet" href="css/master.css"> </head> <body> <header> <span> Journey Through the Sierra Nevada Mountains</span> <h1> Lake Tahoe, California</h1> <img src="small arrow.png" alt="small downward arrow"> </header>

<div class="main-content">
<p>Lake Tahoe is blaze' blaze' ............
.........................</p>
<a href="#">Find Out more</a>
</div>

<div class="">
  <h2> Check out wild life</h2>
  <p>As spawning blah blah blah blah
  blah blah blah ...................
  <a href="#">mink</a>, <a href="#">furs</a>, <a href="#">some</a></p>

  <a href="#">Find out more</a>

  <h3> Tents to Resort</h3>
  <p> blaze, blaze, blah blah blah</p>
  <ul>
    <li>Something thing</li>
    <li>Something thing 2</li>
    <li>Something thing 3</li>
  </ul>
</div>

<footer> All Rights Reserved to the Web developing of
Kinkaid Nolen</footer>

</body> </html>

4 Answers

Dmitry Polyakov
Dmitry Polyakov
4,989 Points

Check the directory. Is you css file located in a css folder called css?

Samuel Duarte
Samuel Duarte
2,931 Points

Make sure your spelling matches the HTML link. Really important but easy to overlook. =)

you need <link rel="stylesheet" href="style.css"> in the html doc

ok thanks