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

green text?

my code is all in green i cant do anything about it. i feel that everything is correct but every time I i try and look at this page it just comes up white.

the codes here

<!DOCTYPE html>
<html>
<head>
  <title>Woodys_Brewing</title> 
  <link rel="stylesheet" href="normalize 2.css">
  <link href='http://fonts.googleapis.com/css?family=Coustard|Cutive' rel='stylesheet' type='text/css/>
  <link rel="stylesheet" href="main.css">
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  </head>
  <body>
  <div class="backcolor">
  <div class="textcolor">
    <header>
  <img src="Evan-logo-2.jpg" class="logo"/>
  <a>
    <nav class="navigation">
      <ul class="contact-info">
        <li><a href="Home.html">Home</a></li>
        <li><a href="About.html">About</a></li>
        <li><a href="Beer.html">Beer</a></li>
        <li><a href="Contact.html"class="selected">Contact</a></li>
      </ul>
    </nav>  
  </a>
</header>

  <ul class="contact">
    <li><a href="tel:530-555-8017">530-555-8017</a></li> 
    <li><a href="mailto:555sbrew@gmail.com"> 555sbrew@gmail.com</a></li>
    <li><a href="https://www.facebook.com/555ysBrewingCo">Check out our facebook Page</a></li>
   </ul>
    <p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=1257+Oregon+street+96001&amp;aq=&amp;sll=50.069734,14.401099&amp;sspn=0.005764,0.016512&amp;ie=UTF8&amp;hq=&amp;hnear=1257+Oregon+St,+Redding,+California+96001&amp;t=m&amp;z=14&amp;ll=40.586006,-122.395112&amp;output=embed"></iframe><br /><small>View <a href="https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=1257+Oregon+street+96001&amp;aq=&amp;sll=50.069734,14.401099&amp;sspn=0.005764,0.016512&amp;ie=UTF8&amp;hq=&amp;hnear=1257+Oregon+St,+Redding,+California+96001&amp;t=m&amp;z=14&amp;ll=40.586006,-122.395112" style="color:#0000FF;text-align:left">Classic FM</a> in a larger map</small></p>

</div>
</div>
</body>

</html>

Is what we see your full code or some part of it has been lost? Try to mark it down if you can. There is a datasheet that appears above the post question/comment/reply buttons . Also your code appears green where? The workspaces? Browser?

Well I fixed the green code, but it still doesn't work when I view the page.

I fixed the code formatting for you. See this guide: https://teamtreehouse.com/forum/posting-code-to-the-forum

What doesn't work? Does the page still come up white? Try holding down your mouse button and dragging around your page to see if it highlights any text.

You have "normalize 2.css" with a space in it. You should fix that by removing the space there and in the file name if it's present there.

1 Answer

Hi Noah, I think the issues are these. I am suspectig there might be one more but I want you to try this and see if it works.

<link rel="stylesheet" href="normalize 2.css">
  <link href='http://fonts.googleapis.com/css?family=Coustard|Cutive' rel='stylesheet' type='text/css/>

you have the space on normalize on the first link that has to go. On the second link you are using single quote ' use double " and in the end type 'text/css you never closed the quote. So...do these changes..

<link rel="stylesheet" href="normalize2.css">
  <link href="http://fonts.googleapis.com/css?family=Coustard|Cutive" rel="stylesheet" type="text/css/">

If you still have issues after that, let us know.