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 Adding Pages to a Website Make an About Page

John Keener
John Keener
6,808 Points

It keeps telling me I'm doing it wrong even though I'm doing exactly what the directions ask.

I made a mistake the first time I checked the step - entering an href attribute instead of a src - but since have entered it correctly several times, and it still tells me to specify img/gratt.png as the src attribute for the image.

2 Answers

Shawn Flanigan
PLUS
Shawn Flanigan
Courses Plus Student 15,815 Points

John,

It's hard to diagnose the problem without seeing your code. If the following doesn't help, please show us your code so we can be more help.

Starting at line 25, here's what the first task should look like:

<section>
        <img src="img/gratt.png" alt="My Profile Photo" class="profile-photo">
</section>
John Keener
John Keener
6,808 Points

Realized it was a slight syntax error that I usually avoid - using a colon instead of an equals sign. Didn't see my own mistake until looking at my code next to the correct version.