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

sean purdy
sean purdy
2,770 Points

Need help with my workspace project...Is there a way to share my workspace?

Hey so i have been following along with the HTML course i've just created the about.html page and it is not showing up in the browser server and also my index.html page is not how it should be but i can't see where i have gone wrong, so just wondering if there is a way where i can share my workspace with you guys so you could tell me where i have gone wrong.

sean purdy
sean purdy
2,770 Points

It's the front end web development course i am studying by the way

Hi Sean,

You can take a snapshot of your workspace and then post that link here.

The snapshot icon is near the preview icon.

More info: https://teamtreehouse.com/forum/workspace-snapshots

5 Answers

sean purdy
sean purdy
2,770 Points

Hey thanks how do i copy that link now...there doesn't seem to be a way for me to copy that link, it doesn't highlight??

Click on that link and then it will open the snapshot in your browser. You can then copy the link from the address bar.

sean purdy
sean purdy
2,770 Points

The address bar is locked, there is not a way where i can copy that link.

sean purdy
sean purdy
2,770 Points

Ahh ok so it's a stupid safari problem...I just opened it in firefox instead here is it is https://w.trhou.se/ctbauvlbtq

Michael Afanasiev
PLUS
Michael Afanasiev
Courses Plus Student 15,596 Points

Hi Sean,

You have a small typo in your hyperlink reference,

        <ul>
          <li><a href="index.html" class="selected">Portfolio</a></li>
          <li><a href="about.hmtl">About</a></li>     <-- notice it is hmtl instead of html -->
          <li><a href="contact.html">Contact</a></li>
        </ul>

Other than that, it seems okay!

Hope this helps.

sean purdy
sean purdy
2,770 Points

Ok well i also think the imaes are supposed to be in columns as well but they are appearing veritcally and also my image on the about page is not showing up...Is it because i named it with a capital letter instead?

Michael Afanasiev
Michael Afanasiev
Courses Plus Student 15,596 Points

Hi Sean,

It seems that workspaces is having some difficulties lately, I suggest to shoot an email to treehouse support at help@teamtreehouse.com

The image on the about page isn't showing up because you left off the equal sign after the src atribute.

<img src"img/Sean.jpg" alt="photograph of Sean Purdy" class="profile-photo">

You have your gallery styles in place but you didn't add the "gallery" id to your ul

<div id="wrapper">
      <section>
        <ul id="gallery"> <!-- added gallery id -->
          <li>
            <a href="img/numbers-01.jpg">
              <img src="img/numbers-01.jpg" alt="">
                <p>Experimentation with color and texture.</p></a>
          </li>

Try making those changes and see if that gets you back on track.