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 How to Make a Website Adding Pages to a Website Add a New Page

Creating an working "About file" by copying & pasting the index.html file.

I'm trying to creat a working "About File". I copied and past the "Portfolio File" that is working correctly, but doesn't seem to work in the About File. Any suggestions.

<!DOCTYPE html>
<html>
  <head>
  <meta charset="utf-8">
  <title>Ric Logsdon|Designer</title>
  <link rel="stylesheet" href="css/mormalize.css">
  <link href='http://fonts.googleapis.com/css?
family=Chana+One|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>Ric Logsdon</h1>
      <h2>Designer</h2>
     </a>
     <nav>
       <ul>
         <li><a href="index.html" class="selected">Portfolio</a></li>
         <li><a href="indext.html">About</a></li>
         <li><a href="indext.html">Contact</a></li>
       </ul>
     </nav>
   </header>
   <div id="wrapper">
     <section>
       <ul id="gallery">
        <li>
          <a href="img/family.jpg">
         <img src="img/family.jpg" alt="">
            <p>The Logsdon Family.</p>
        </a>
        </li>
        <li>
          <a href="img/ron and nikki.jpg">
         <img src="img/ron and nikki.jpg" alt="">
            <p>Ron and Nikki Logsdon.</p>
        </a>
        </li>
        <li>
          <a href="img/R & Z.jpg">
         <img src="img/R & Z.jpg" alt="">
            <p>Rikki andZach chang.</p>
        </a>
        </li>
        <li>
          <a href="img/T&O.jpg">
         <img src="img/T&O.jpg" alt="">
            <p>Ollevia and Tylor.</p>
        </a>
        </li>
         <li>
          <a href="Angie and I.jpg">
            <img src="img/Angie and I" alt="">
            <p>Ric and Angie.</p>
           </a>
           </li>
        </ul>
       </section>
       <footer>
        <a href="http://twitter.com/riclogsdon"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a>
        <a href="https://facebook.com/riclogsdon"><img src="img/facebook-wrap.png" alt="facebook logo" class="social-icon"></a>
         <footer>
      <p>&copy; 2018 Ric Logsdon.</p>
     </footer>
       </div>
   </body>
</html>

Moderator edited: Markdown added so that code renders properly in the forums.

Steven Parker
Steven Parker
229,644 Points

When you say "doesn't seem to work", what exactly is happening (or not) different from what you expect?

Also, to facilitate a complete analysis and accurate answer, make a snapshot of your workspace and post the link to it here.

3 Answers

Steven Parker
Steven Parker
229,644 Points

I notice that the links for both the "About" and "Contact" are "index‌t.html".

If you don't actually have a file by that name, perhaps the "t" is a typo.

I am unable to post the screenshot. When I click on the About link on the website it goes to another screen that says 404 Not Found at the top Not Found the requested URL/indext.html was not found on this server.

Steven Parker
Steven Parker
229,644 Points

Please be aware that a "snapshot" is not a screenshot but a copy of your entire workspace environment. I made the word "snapshot" in my original comment a link that you can click on to go to a tutorial video about how to make them. Then you simply share the URL that they generate.

A snapshot makes it possible to do a complete analysis of the issue.

Thank you, Steven. typo's got me. Also thanks for showing how to do a snapshot. Huge help.