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 Organize with Unordered Lists

When I log in I am not resuming track in the same place that I logged out?

Hi,

I only started this course yesterday. I got to the part where I had to upload the img file but I was unable to drag and drop the file into it. I wrote on the forum and also to customer services. I was told to try again, I just logged back in and I am on a task which I have already done, and when I try to continue its saying that I haven't passed. This is so frustrating, I was really looking forward to this course but now i'm disappointed...

12 Answers

Calmn down bro. You are probably with problem with your browser or are doing wrong haha, have you already try other browser?

Good luck and do not stop just because you can't upload images here, keep going!

p.s sorry bad english

haha I am slightly calmer now!

Scott Easter
Scott Easter
7,148 Points

The image upload portion I can probably answer for you if you are on a PC.

Make a folder on your desktop and when you open your download folder, drag the files into it and they should unzip. Then drag them from the new folder that is on your desktop into the box where you dragged them before.

As for the part that you are having trouble with, I am not sure what happened but just continue and see if it happens again, and don't get to frustrated. Sometimes things don't go according to plan with programming and web design so don't stress and keep asking questions!

Hope this information helps, Sarah.

Ok I have managed to upload the images now using Mozilla firefox, I have also uploaded some of my own and have them all in an image folder. I am trying to add them to the workspace by typing <li><img src="img/numbers.01.jpg" alt=""></li> but when I go to the view page all it shows is an extra bullet point! I have tried it on google chrome and mozilla firefox...

Can you post your code here?

How to post code here:

Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.

It did not let me add the code there

How to post code here:

Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.

"""html<img src= "img/numbers-01.jpg" alt="">"""

didnt work again! """img src="img/numbers-01.jpg" alt="" """

Scott Easter
Scott Easter
7,148 Points

Back ticks are the key above the tab key (at least on my keyboard ``) I sometimes confused it with a single quote, but that won't work

Atanas Sqnkov
Atanas Sqnkov
14,981 Points

Hello Sarah!

Just type three ` , the key below Esc. Three times before the code, three times after it.

<img src="img/numbers-01.jpg" alt="">

The image is displayed? I guess the url when passed to Treehouse workspace changes the src.

Thank you

I don't understand, how do I see the image displayed? Its not showing up when I click to view

Scott Easter
Scott Easter
7,148 Points

Can you post all of your code?

Have you tried using the underscore character _ instead of the - character?

Correct:

<img src="img/numbers_01.jpg" alt="">

Incorrect:

<img src="img/numbers-01.jpg" alt="">