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

JavaScript

missing.html

Can someone please look at this code:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <link href='http://fonts.google.apis.com/css?family=varela+round' rel='stylesheet' type='text/css'>
    <link rel="stytlesheet" href="css/main.css">
    <title>AJAX with Javascript</title>
    <script>
      var xhr = new XMLHttpRequest();
      xhr.onreadystatechange = function() {
        if(xhr.readyState === 4) {
          document.getElementById('ajax').innerHTML = xhr.responseText;
        }
      };
      xhr.open('GET','sidebar.html');
      xhr.send();
    </script>
  </head>
  <body>
    <div class="grid-container centered">
      <div class="grid-100">
        <div class="contained">
          <div class="grid-100">
            <div class="heading">
              <h1>Bring on the AJAX</h1>
            </div>
            <ul id="ajax">

            </ul>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>

when i open preview and use the Javascript Console i get this message: GET http://alpha.forpsi.pl/missing.html

that's not what the instructor gets when he does it??????????

2 Answers

Here is the right link: http://fonts.googleapis.com/css?family=Varela+Round

In your link there is a dot sign after 'google'.

Good eye, i saw that when i was looking over the code at the beginning...but since i downloaded the code from Treehouse - i thought it might be a different way to do the fonts.

Shame on Treehouse for not seeing that!

thanks.