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

Jay Tamayo
PLUS
Jay Tamayo
Courses Plus Student 171 Points

Whats wrong with my css

my css is not responding to my page ,i need help

We can't see what your code is, can you share it? Or at least what the error you're having is?

Jay Tamayo
Jay Tamayo
Courses Plus Student 171 Points

how do you share your work or how do upload your screen shot ? sorry im kinda new to this.

Jay Tamayo
Jay Tamayo
Courses Plus Student 171 Points
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Jay Tamayo / Designer</title>
    <link rel="stlyesheet" href="css/normalize.css">
    <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400,400italic,700,700italic,800' rel='stylesheet' type='text/css'>
    <link rel="stlyesheet" href="css/main.css">
  </head>
  <body>
    <header>
      <a href="index.html" id="logo">
        <h1>Jay Tamayo</h1>
        <h2>Designer</h2>
      </a>
      <nav>
        <ul>
          <li><a href="index.html" class="selected">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 id="gallery">
        <li>
          <a href="img/numbers-01.jpg">
            <img src="img/numbers-01.jpg" alt="">
            <p>experimentation with colour and texture</p>
            </a>
        </li>
       <li>
          <a href="img/numbers-02.jpg">
            <img src="img/numbers-02.jpg" alt="">
            <p>Playing with blending mode in photoshop</p>
            </a>
        </li>
         <li>
          <a href="img/numbers-06.jpg">
            <img src="img/numbers-06.jpg" alt="">
            <p>that 80 style glow</p>
            </a>
        </li>
         <li>
          <a href="img/numbers-09.jpg">
            <img src="img/numbers-09.jpg" alt="">
            <p>photoshop brushes</p>
            </a>
        </li>
         <li>
          <a href="img/numbers-12.jpg">
            <img src="img/numbers-12.jpg" alt="">
            <p>repetition with photoshop</p>
            </a>
        </li>
        </ul>
      </section>
       <footer>
        <p>&copy; 2015 Jay Tamayo.</p>
      </footer>
      </div>
  </body>  
</html>
Jay Tamayo
Jay Tamayo
Courses Plus Student 171 Points
/****************
General
*****************/
 body{
  font-family: 'Open Sans', sans-serif;

}
a {
  text-decoration: none;
}

img{
  max-width: 100%;
}

#wrapper {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 5%;
}

#logo {
  text-align: centre;
  margin: 0;
}

  a   {
  color: #6ab47b;
}
  h1{
  font-family: 'Changa One', sans-serif;
  margin: 15px 0;
  font-size: 1.75em;
  font-weight: normal;
  line-height: 0.8em;
}

h2{
  font-size: 0.75em;
  margin: -5px 0 0;
  font-weight: normal;
}
/****************
navigation
*****************/

nav{
  text-align: centre
  padding: 10px 0;
  margin: 20px 0 0;
  }

/****************
header
*****************/

/****************
colors
*****************/
/* green header */
header{
  background: #6ab47b;
  border-color: #599a68;
}
 /* logo text */
h1, h2 {
  color: #fff;
}

nav{
  background: #599a68
}

nav a  nav a:visited {
  color: #fff;
}
/****************
portfolio
*****************/
#gallery{
  margin:0;
  padding: 0;
  list-style: none;
}

#gallery li{
  float: left;
  width: 45%;
  margin: 2.5%;
  background-color: #f5f5f5;
  color: #bdc3c7;
}

#gallery li a p{
  margin: 0;
  padding: 5%;
  font-size: 0.75em;
  color: #bdc3c7;
}
nav a.selected, nav a:hover {
  color: #32673f;
}

/* site body */
body{
  background-color: #fff;
  color: #999;
}

1 Answer

You spelled stylesheet incorrectly in your rel attribute.

// "stlyesheet" should be "stylesheet"
<link rel="stlyesheet" href="css/normalize.css">