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 Anchor Tags

3 Answers

Steven Parker
Steven Parker
229,644 Points

When used by itself in an "href", the pound symbol means "the top of the current page". It can also be part of a reference to a particular element when it is followed by the ID name of the element.

Asanka Pathirana
Asanka Pathirana
2,295 Points

is resume symbol which lead to home page or current page top as you can see in this video they change "href" Links for social media tags from "# " to their respective links since they were not leading anywhere with

<a href="#">Home</a> Here # or pound symbol is used as the place holder when the path is not specified.

<a href="#contact">Contacts</a> . . <section id ="contact"> . . </section> Here # or pound symbol is used as the identity to jump to a particular section of the page.

or <a href="#top"> scrolls or jumps to the top of page when you are in the end of the page.

Hope this helps. :)