> ## Documentation Index
> Fetch the complete documentation index at: https://help.kajabi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Link to a section of a different page

> Learn to link to a section of a page by using anchor tags to help your site visitors navigate.

Linking to specific sections of a page is a valuable tool to help your site visitors navigate your page. Learn to link to a section of a page by using anchor tags.

If you are using the Premier Legacy Templates, please refer to the guide [here](/articles/website/pages/how-to-set-anchor-links-in-your-page-with-premier).

***

## Adding an anchor tag to a section of your page

With an anchor tag, you can link to any section of your page containing your added anchor tag. This allows you to "anchor" a section of your page to use for your hyperlink.

* Click into the **Text Block** you want to lead to, click `<>` in the Text Editor.
* Then, insert the following code with your desired Anchor Tag.

We recommend creating an Anchor Tag that is relevant to the section. Keep in mind, the URL linking to the Anchor Tag will be visible to the visitors clicking the link.

```html theme={null}
<a name="anchor_tag_here"></a>
```

* Add #AnchorTag to the end of your URL to send your audience to your anchor link.

### In the example below

```html theme={null}
<a name="virtualclass"></a>
```

The URL to the Anchor is: **[https://help.kajabi.com/#virtualclass](https://help.kajabi.com/#virtualclass)**

<div className="w-full aspect-video">
  <iframe src="https://fast.wistia.net/embed/iframe/41ij569asv" allow="autoplay; fullscreen" allowFullScreen className="w-full h-full" />
</div>

<Note>
  **Note:** The Anchor Tag is case sensitive.

  For example, if your Anchor Tag is `<a name="VirtualClass"></a>` then your URL must have #**V**irtual**C**lass and not #**v**irtual**c**lass. Notice the difference in the first letter of each word. Be sure to match your URL to your Anchor Tag including any applicable lowercase or uppercase letters.
</Note>
