How to create in-page anchor

Mi pregunta tiene que ver con los vínculos en la misma pagina, la llamada al elemento se hace así:

[Elemento Anchor](?classes=button#elemento-id)

estoy tratando de darle el id al elemento asi:

[Mi elemento](id=elemento-id)

No funciona, como se identifica el elemento para llamarlo desde la misma pagina?

@alladin, Please have the courtesy to post your question in English…

My question has to do with the links on the same page, the call to the element is done like this:

[Anchor element] (? Classes = button # element-id)

I am trying to give the id to the element like this:

[My element] (id = element-id)

It does not work, how is the element identified to call it from the same page?

@alladin, A quick Google search gave the following suggestion.

[Link taking me to Anchor 'Element'](#element)
### <a name="element"></a>Element to be linked to

or using pure Markdown

### [](?id=element) Element to be linked to
  -or-
### Element to be linked to [](?id=element) 

I assign the name to my element like this

[Generar Archivo .PFX 'fel_2'](#fel_2)

I call it that

[Generar Archivo .PFX](https://.../implement-fel#fel_2)

it does not work

note: I am doing this in grav admin

@alladin, Have you tried the suggestion I found using Google?

in google you can find the solution for html in general which is id = “fel_2” in the element, but NOT as it is done in grav

THX

Hello/Hola alladin
Grav works fine with html, use the anchor in the html way, in the admin module, it works, assign an id and ready. You can also make internal links using other tags like <section id="link"></section> and then you link to it from anyplace with:
<a href="http://yourwebsite.com/es/productos#link">Productos</a> if your page containing the id=“link” is named, for example, productos.
Hope it helps, regards.

Spanish: Grav trabaja bien con codigo html escrito en el modulo administrativo, funciona, le asignas un id y listo. Tambien puedes hacer enlaces internos usando otras etiquetas como <section id="link"></section> y luego enlazas desde cualquier lugar con:
<a href="http://tusitio.com/es/productos#link">Productos</a> si tu página que contiene el id=“link” se llama productos por ejemplo
Espero te sirva. Saludos