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 Introduction to HTML and CSS (2016) HTML: The Structural Foundation of Web Pages and Applications Test: Creating an HTML Element

I'm stuck with this challenge "Set the anchor tag so it point to the top of the page"

Hi guys I need help I already used those provided under "Get Help" and the codes provided there which is <img <a href="#top" alt=A picture of me in Spain" src= "images/spain.jpg> IS NOT WORKING.

index.html
<!doctype>
<html>
  <head>
    <title>My trip to Spain</title>
  </head>
  <body>

    <img <a href="#top"></a> alt="A picture of me in Spain" src="images/spain.jpg">
    <p>Here is a picture of me in Spain last summer!</p> 
    <a>Go back to the top of the page.</a>

  </body>
</html>

2 Answers

Dale Severude
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,349 Points

Put the href pointing to #top inside of the anchor item for going back to the top of the page. Remove the extra anchor item inside the image tag.

Hey Dale appreciate it but that's the exact codes that i'm talking about that is not working... can you perhaps give another example?... cause I really don't know how to correct this.

Dale Severude
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,349 Points

Your image has an unneeded anchor tag in it. It should be like so:

    <img src="images/spain.jpg" alt="A picture of me in Spain">

The anchor should contain the href pointing back to #top.

    <a href="#top">Go back to the top of the page.</a>