Skip to main content

How to create same-page links using anchor tags

Published on: 18/04/2019 Last update: 18/05/2021 Document

Joinup is an online collaborative platform created by the European Commission and funded by the European Union via the ISA² Programme. It offers several services for sharing and reusing interoperability solutions for public administrations, businesses and citizens, and encourages knowledge sharing between likeminded e-Government professionals.

This How-To document outlines the process to follow in order to create same-page links with the use of HTML anchor tags.

Anchor tags as HTML bookmarks

Anchor tags are frequently used to create same-page links (i.e., redirecting the user to another part of the same page). When used in this capacity, they are also known as HTML bookmark tags. For the purposes of this How-To, we will create a fictitious Frequently Asked Questions (FAQ) page that is an ideal candidate to demonstrate the usefulness and practicality of such tags.

Laying out the content

The first step is to lay out the content. In this case, since we are creating an FAQ page, we will insert the questions and answers on the page, as shown in the below screenshot. At this stage, you could also apply any stylistic changes such as titles, bold/italic text etc. Note that we are using a custom page item type for this How-To, but any other supported item type will do as well (i.e., document, news, discussion and so on).

Draft layout of FAQ content
Draft layout of FAQ content


Creating the anchor tag ID links

The second step is to create the anchor tag ID links which will provide the visual cue to the user (i.e., underlined, hyperlinked text) and denote that these are actual links that point elsewhere on the page. To do this, apply the following process:

  1. Select a question (i.e., “Question One”);
  2. In the Editor toolbar, click on the Link icon (
    Link Icon
    );
  3. In the Add Link popup window, insert in the URL field the hash symbol (“#”) followed by a unique ID (i.e., “#q1”); click SAVE.

Repeat the above process for each question; make sure to use unique IDs (i.e., for “Question Two” you could use “#q2”), after the hash symbol. The following screenshot shows the above steps in action:

Creating the anchor tag ID links
Creating the anchor tag ID links


Connecting the anchor tag IDs

The third, and final, step is to connect the anchor tag IDs we have created above for the questions, in order to redirect the user to the corresponding answers. To do this, apply the following process:

  1. In the Editor toolbar, click on the Source icon (
    Source Mode Icon
    ). This will switch your Editor view to HTML code mode;
  2. Locate an answer (i.e., “Answer One”), and add at the beginning – and after the <p> tag – the following HTML code: <a id="q1"></a>. Note that we have used the unique ID “q1” which we had created for “Question One” (since we want to redirect to “Answer One”). Pay special attention to the fact that we have omitted the hashtag symbol (“#”). You should end up with the following HTML code (the bold text shows the addition):

    <p><a id="q1"></a>Answer One</p>

Repeat the above process for each answer; make sure to use the corresponding unique IDs that you have used when creating the anchor tag ID links for the questions. The following screenshot shows the final outcome of this process (the red rectangle shows the affected parts):

Connecting the anchor tag IDs
Connecting the anchor tag IDs


If you now save your changes and publish them, you should have a page with proper hyperlinked questions that, when clicked upon, will redirect you to the corresponding answers further below on the page.

Of course, the example of creating an FAQ page is just one of the several uses the anchor tags can help you create. You could also utilise them to create redirections from section titles, or even create your own fully customised Table of Contents.

More How-To articles are a click away

Visit our dedicated Joinup How-To space to read articles outlining in simple, yet quick, steps how to initiate and complete useful Joinup actions, and find tips on how to enhance your experience on the platform. Make sure to check this space regularly for new How-To articles!

Categorisation

Type of document
Document