Is called link link
Example with div:
<div id="tips">Useful Tips Section</div> <!-- crie um ID para a div ou span -->
Or with another link:
<div id="tips">Useful Tips Section</div>
Calling another link to the position of the previous div or link:
<a href="#tips">Visit the Useful Tips Section</a> <!-- Utilize esta Id com # no link para ir até este local -->
Calling the link on another page:
<a href="http://www.w3schools.com/html_links.htm#tips">Visit the Useful Tips Section</a>
Here you need to pass the full url of the site because you are using it in another location, other site, etc, but it works, will point exactly to the div id = "tips"
Source:http://www.w3schools.com/html/html_links.asp
I’m sorry, I don’t understand. For example I want to make the word Rcelo a link and when clicked go to a part of the end of the same page that says Aymone. How do I do this in xhtml and css?
– David
You will encapsulate the word you want within a div or other element, such as a span, will assign an ID to this span or div. then you create a common link, with the href='#id' property of span or div, etc.
– Marcelo Aymone