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 trialHilary Katsande
9,045 Pointshow to set an anchor tha it will be on top of the page
on indeex html
<!doctype>
<html>
<a> My trip to spain href head </a>
<a>title>My trip to Spain href</a>
/head
<body>
<img 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>
1 Answer
Shay Paustovsky
969 Points <!doctype html> <!-- 1 -->
<html>
<head> <!-- 2 -->
<title>My trip to Spain</title>
</head> <!-- 2 -->
<body>
<img src="images/spain.jpg" alt="photo from the trip to Spain"> <!-- 3 -->
<p>Here is a picture of me in Spain last summer!</p>
<a href="#top">Go back to the top of the page.</a> <!-- 4 -->
</body>
</html>
Hi Hilary, you have a few errors on the document:
- 'doctype declaration' is incomplete
- the <head> tags are gone and instead of title you have 2 anchor elements
- There's a missing 'alt' attribute in the <img> tag.
- the anchor element is missing an <href> attribute so it can navigate to the top of the page.
In my answer I have provided all the errors in their corresponding place respectively and hopefully it will help you on your way to solve the problem. If you have anymore questions don't hesitate to ask
HAPPY CODING
Sincerely, Shay Paustovsky