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 trialTracy Manning
431 PointsI am having trouble adding the profile picture on about.html. Thank you so much!
I am sure, I'm just missing something.
Tracy Manning
431 Pointshttps://w.trhou.se/87pgtf45kx the snapshot requested
Marcus Parsons
15,719 PointsHi 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.
Saskia Lund
5,673 PointsHehe :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 :)
Marcus Parsons
15,719 PointsSaskia,
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.
Saskia Lund
5,673 PointsAlright :)
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.
Marcus Parsons
15,719 PointsThank you :P
Tracy Manning
431 PointsThank you Marcus!
3 Answers
Saskia Lund
5,673 PointsThere is a closing > missing after section in line 26 of your about.html
Add it and it should do the trick ;)
Marcus Parsons
15,719 PointsSaskia 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.
Tracy Manning
431 Pointshttps://w.trhou.se/87pgtf45kx the snapshot requested.
Saskia Lund
5,673 PointsI will check that out. nice functionality the treehouse snapshot thingie.
Tracy Manning
431 Pointshttps://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.
Marcus Parsons
15,719 PointsI 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>
Saskia Lund
5,673 PointsSaskia Lund
5,673 PointsPlease post your code :)