Chunk

Ancla

From Joomla! Documentation

Un ancla es creada mediante la etiqueta <a> en HTML. Un ancla te permite colocar un marcador en una página HTML. En Joomla!, usted puede colocar un anclaje dentro de un artículo (por ejemplo, usando el editor TinyMCE). Esto le permite crear un enlace que le llevará directamente a ese punto en el artículo.

El código fuente HTML de un ancla tiene la siguiente estructura:

<a name="mi_ancla" title="Mi Ancla"></a>

Puede enlazar con un ancla desde la propia página usando el código HTML

<a href="#mi_ancla" ></a>

Al pinchar en ese enlace le llevará directamente a donde se encuentre la etiqueta del ancla.

You can link to an anchor in a different page by appending "#" plus the anchor name to the end of the URL. In the example above, if the URL for the article was http://www.mysite.com/my_article.html, then you could link directly to the anchor in that page with the URL http://www.mysite.com/my_article.html#my_anchor.

Languages