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

I'm at The add new page section of Treehouse.com. The portfolio page still comes up in my browser.

not the about page.

When I select the about page in the browser, the about page does come up and looks fine except that my photo (of me) doesn't show. The alternate text does show. I have saved the treehouse files, rebooted my computer with the same results. I can find no HTML errors.

Trying this again with markdown. Hopefully I have figured what a backtick is.

See below.

<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>Martin Scott | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400,400italic,800,700italic,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Martin Scott</h1> <h2>Designer</h2> </a> <nav> <ul> <li><a href="index.html">Portfolio</a></li> <li><a href="about.html"class="selected">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> </header> <div id="wrapper"> <section> <img src="img/Martin.jpg" alt="Photograph of Martin" class="profile-photo" /> <h3>About</h3> <p>Hi, I'm Martin </p> <p>If you'd like to follow me on Twitter, my username is <a href="http://twitter.com/scottm523">@scottm523</a>.</p> </section> <footer> <a href="http://twitter.com/Scottm523"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a> <a href="http://facebook.com/scottm52"><img src="img/facebook-wrap.png" alt="Facebook Logo" class="social-icon"></a> <p>&copy; 2014 Martin Scott.</p> </footer> </div> </body> </html>

Hi Martin,

The backtick is above the tab key or to the left of the '1' key.

Here's a thread to help with posting code: https://teamtreehouse.com/forum/posting-code-to-the-forum

2 Answers

Shawn and Jason:

Thanks for your help and great answers! I'm going to get some sleep now and start again tomorrow.

Hi Martin,

When you get back on it I would check your "img" folder and make sure your image is there and that the capitalization matches.