Hola
rtr, tu te estas refiriendo a crear enlaces internos, en
este artículo te lo van a explicar mejor que yo.
Igualmente te comento: creas un enlace al que das un name="" y luego creas otro con un href="" al primero supongamos le damos un name="enlace1" y al segundo href="#enlace1". Ten en cuenta que en el href debes anteponer una almoadilla "#"
Aqui te dejo un ejemplo funcionando en el cual podras verlo tu mismo.
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>enlaces internos</title>
</head>
<body>
<ul>
<a name="arriba"></a>
<a href="#abajo">Ir abajo</a>
<li><a href="#enlace1">enlace 1</a></li>
<li><a href="#enlace2">enlace 2</a></li>
</ul>
<h1>Enlaces internos</h1>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<h1><a name="enlace1">Enlace 1</a></h1>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<h1><a name="enlace2" >Enlace 2</a></h1>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<p>texto</p>
<a href="#arriba">Ir arriba</a>
<a name="abajo"></a>
</body>
</html>
Espero te sirva, saludos
p/d: Hola PablukY, jaja, solo por un minuto, buena explicación. un abrazo.