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 Creating HTML Content Build the Footer

when i type in the Facebook link and my name it takes me to someone else profile ??? plz help

???

Hi Joseph,

Welcome to Treehouse!

It's hard to know for sure what's going on without seeing any code. You can either paste your HTML here or take a snapshot of your Workspace so we can see your code and try to figure this out.

</section> <footer> <a href="https://www.facebook.com/profile.php?id=100007119286879><img scr="img/MODZ-420.png" alt="FACEBOOK LOGO "></a>

  <p>&copy; 2015 Joseph Skurr.</p>
</footer>

</body> </html>

Sorry for the delay,

In addition to what James said, I can point out that your anchor tag's href attribute is missing a closing quote.

<!-- change this -->
<a href="https://www.facebook.com/profile.php?id=100007119286879>
<!-- to this -->
<a href="https://www.facebook.com/profile.php?id=100007119286879">

1 Answer

james niemerg
james niemerg
1,001 Points

It seems that the problem here is that you have the wrong url.

Go to your facebook profile and click on your picture in the upper right hand corner. Select that url, copy it, then paste it in your code.

does this look right ?? </section> <footer> <a href="https://www.facebook.com/profile.php?id=100007119286879><img scr="img/MODZ-420.png" alt="FACEBOOK LOGO "></a>

  <p>&copy; 2015 Joseph Skurr.</p>
</footer>

</body> </html>

james niemerg
james niemerg
1,001 Points

that looks right but there is no way for me to know because I do not know who you are.

Common sense suggests that if that links to your profile then yes... that would look right.