Just like below
http://www.nus.edu.sg/gem/
Main Topics
Browse All Topicswhat does # mean?
i saw the syntax --> <a href="page.html#layer">
Thank you guys
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Just like below
http://www.nus.edu.sg/gem/
check out anchor name
http://www.w3schools.com/h
hongjun
If you want to create links within a page you can accomplish it by using <a href="page.html#layer">
A small example for you to make it understand better
<a href="page.html#book1">Go to book 1 section</a> : When you click this link it will take you to a book 1 section on page even if its all the way on the bottom of the page
<a href="page.html#book2">Go to book 2 section</a>
<a href="page.html#book3">Go to book 3 section</a>
<a name="book1">Book 1 section</a>
<a name="book2">Book 1 section</a>
<a name="book3">Book 1 section</a>
Business Accounts
Answer for Membership
by: hongjunPosted on 2003-12-06 at 09:16:53ID: 9888760
It means to go to the anchor with name "layer".
hongjun