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 How to Make a Website Adding Pages to a Website Build the Contact Page

My Contact page won't load.

My contact page won't load despite saving, cmd+shift+R, and clearing browser history. Am I doing something wrong?

Let us see your code (check the markdown cheatsheet to make sure it formats in a readable way).

If other pages are loading, but not this one, more than likely the problem lies in a broken link in your html. Make sure the link is exact.

3 Answers

I have those tags but for some reason they don't show when I've copied & pasted in to this page!!?!? But yeah I thought everything should load fine. Im sure I'll find a way! thanks

this is the html code

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Paul Girard | Designer</title>
    <link rel="stylesheet" href="css/normalize.css">
    <link href='http://fonts.googleapis.com/css?family=Syncopate:700|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" href="css/main.css">
  </head>
  <body>
    <header>
      <a href="index.html" id="logo">
        <h1>Paul Girard</h1>
        <h2>Designer</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" class="selected">Contact</a></li>
        </ul>
      </nav>
    </header>
    <div id="wrapper">
      <section>
        <img src="img/Paulverine2.jpg" alt="Photograph of Paul Girard" class="profile-photo">
        <h3>About</h3>
        <p>Hi, I'm Paul Girard! This is my design portfolio where I share any new work I've been doing. I've just re-discovered my love for Logo Design and branding! Does your company need Re-branding I hear you say? Yes?? Then I can help you improve the perception of your company through good modern Logo design and aim to have a fluid communications with a client to create the best possible outcomes!! Simply contact me to setup a meeting where I can take you through the design process and the creative timeline!!</p>
        <p>If you'd like to follow me on facebook please follow this link!! <a href="http://facebook.com/paul.girard779642">@paulgirardfacebook</a>.</p>
      </section>
      <footer>
        <a href="http://twitter.com/PGirard1234"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a>
        <a href="http://facebook.com/paul.girard779642"><img src="img/facebook-wrap.png" alt="Facebook Logo" class="social-icon"></a>
        <p>&copy; 2014 Paul Girard.</p>
      </footer>
    </div>
  </body>
</html>

This loads fine for me, so I'm not sure what the issue might be; you're missing html, body, and head tags, but it loads no problem in on my machine in chrome, firefox, and IE 11. Perhaps there is some issue with something in your workspace.

I am having the same issue. It shows a blank page. I feel that the preview is not referencing my code, but it's bringing me to a blank contact.html page.