Could you go into a little more depth about what you mean here? "Anchors" in HTML are very precise, meaning that you click that link and then the same page jumps to another section. Those are set based on the jumping to another HTML element's ID.
Here's an example:
<a href="#form">Clicking this link would go the HTML element which has an ID of "form."</a>
<p>Blah blah blah placeholders</p>
<div id="form">Here's the form!</div>
In that case, clicking on that link would jump the anchor "#form" on the same page. For a real example on this page,
clicking on this link jumps to the top of this post right here.
Do you mean something else by "anchors?"
Best,
Edward Unthank | Founder, Etumos