Skip to content

How to insert an anchor

Nader Dabour edited this page Jan 23, 2015 · 4 revisions

Anchor is specific place in the page, where you can link to. Anchors are generally used when you create pages with considerable amounts of text (like FAQ list). For example you would have a list of links at the top of the page linking to the anchors that have been inserted in the text.

To link to an anchor you need to:

  1. Insert an anchor - in html mode you should add an id attribute to the element, that you would like to link to.

<h3 id="#form">Contact form</h3>

  1. Insert a link to anchor

<a href="#form">Contact us</a>

Clone this wiki locally