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

Catalin Mircea Nicolaica
Catalin Mircea Nicolaica
16,781 Points

Something is wrong with this

I have 3 problems (atleast workspace has highlighted 3 things with red) and I dont know what is wrong http://imgur.com/sVPhAF4 , also the ''&copy" does not seem to work when using workspace and testing, i've input code on js bin and it seems to work fine there, so I am not sure what is wrong with code or if there is a problem on workspace also code is at https://gist.github.com/anonymous/74f44d86d8805dfdeea6 if someone wants to look at the full code and tell me if something is wrong

2 Answers

Gianmarco Mazzoran
Gianmarco Mazzoran
22,076 Points

Hi Catalin Mircea Nicolaica,

i find a typo on your code, after the src attribute in the img tag there are two double quotes in more.

Gianmarco Mazzoran
Gianmarco Mazzoran
22,076 Points

you've typed

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

instead of

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

You also have the link to your stylesheet outside of your head. There are a few typos as well.

I would recommend that you use the Markup Validation Tool click on direct input and paste your code in.

Hope this helps!