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 trialWade Williams
1,500 PointsLink parts of a web page
How to link to a specific part in a web page
2 Answers
Steven Parker
231,248 PointsThe part you wish to link to should be given an "id" attribute if it does not already have one.
Then to link directly to that part from the same page, use that ID as the "href" of the link with a "#" symbol in front of the name. If the link is to a different page, put the "#" and the id immediately after the URL in the "href".
For example:
<p id="linkme">This is the spot you want the link to go to</p>
<!-- then elsewhere on the page -->
<a href="#linkme">Click here to go to the other part of the page</.a>
And for a practical example, click here to go to the question part of this page.
Fran ADP
6,304 Pointsuse 'href' when using links.
Wade Williams
1,500 PointsWade Williams
1,500 PointsThanks, this worked