Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Muhammed Drammeh
471 Pointswhat is an anchor tag
what is an anchor tag?
<!doctype>
<html>
<head>
<title>My trip to Spain</title>
</head>
<body>
<img 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

Alexander Besse
Full Stack JavaScript Techdegree Graduate 34,965 PointsHey, Muhammed Drammeh!
An anchor tag is used to turn elements on the page into links. This can be done with text, or if you wrap the <a>
anchor tag around an image, it will turn the picture into a link.
Anchor tags are declared with <a href="LINK">TEXT</a>
You can see more here: https://www.w3schools.com/tags/tag_a.asp

Jorge Flores
2,207 Pointsthe 'a' tag.
<html>
<head>
<title>My trip to Spain</title>
</head>
<body>
<img src='images/spain.jpg' alt="A picture of me in Spain">
<p>Here is a picture of me in Spain last summer!</p>
<a href='#top'>Go back to the top of the page.</a>
</body>
</html>