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 Add a New Page

I am having trouble adding the profile picture on about.html. Thank you so much!

I am sure, I'm just missing something.

Please post your code :)

https://w.trhou.se/87pgtf45kx the snapshot requested

Hi Tracy,

Can you instead please post a snapshot of your workspace? If you don't know how to do that, here is a great forum post: http://www.teamtreehouse.com/forum/workspace-snapshots.

Hehe :D

Ok that was not the code..

By "post your code" I meant something like this:

<html>
<head>
<title>About Tracy Manning</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<h1>About</h1>
<p>Hi, I am Tracy Manning</p>
</body>
</html>

and something like this

h1 {
  font-size: 2em;
}

Now, give it another try:

Please post your code :)

Saskia,

Please encourage students to post snapshots instead of code if they're working in Workspaces. The snapshot is just a URL and not only has all code but the file structure as well. It is much better than posting code directly to the forums.

Alright :)

Thanks for pointing that out

.. let's just hope Tracy knows what should be visible in that snapshot --

EDIT: nevermind! I didn't know that the snapshot functionality provides a fully functional workspace and not just a flat image.

Thank you :P

Thank you Marcus!

3 Answers

There is a closing > missing after section in line 26 of your about.html

Add it and it should do the trick ;)

Saskia is right! :) There are also a few small things. You have a capital T in your title tag in the head of the document. Also, the link to your Twitter username in the main part of the about page has to have an "http://"; otherwise, it tries to use the current server as the route to your twitter username lol.

https://w.trhou.se/87pgtf45kx the snapshot requested.

I will check that out. nice functionality the treehouse snapshot thingie.

https://w.trhou.se/87pgtf45kx I added in the closing > after section, but it did not solve the problem. (added a new snapshot) thank you for the help.

I looked at that snapshot, and it's still missing a > in the section tag. You also still didn't change the link to your Twitter, but it's fixed below.

         <!-- notice the missing > below -->
        <section 
          <img src="img/tracy.jpg" alt="photo of Tracy Manning" class="profile-photo">
          <h4>About</h4>
          <p> Hi, I'm Tracy Manning....</p>
          <!-- Also, the link to your Twitter had to be changed to http:// as I said. -->
          <p> If you would like to folow me on Twitter, my user name is <a href="http:Twitter.com/Hav99"> @Hav99</a>.</p>
            </section>

This is how it should be:

        <section>
          <img src="img/tracy.jpg" alt="photo of Tracy Manning" class="profile-photo">
          <h4>About</h4>
          <p> Hi, I'm Tracy Manning....</p>
          <p> If you would like to folow me on Twitter, my user name is <a href="http://twitter.com/Hav99"> @Hav99</a>.</p>
            </section>