All Collections
Contents
Any question ?
How do I insert an anchor on my landing page or email?
How do I insert an anchor on my landing page or email?

A little bit of HTML to improve the UX of your landing pages and emails.

Florent avatar
Written by Florent
Updated over a week ago

To link to a part of your landing page or email, you need to use a small piece of html code in the Plezi editor.

Here's how to do it:

Insert an HTML block where you want to redirect the user, like this:

  • In this HTML block, the following code must be entered:

<p id="haut"></p>

Then you need to create a second HTML block at the bottom of the page which will allow you to go back to the level at which you placed the first block.

In this one you have to put a code of this type (this is an example, but you can customise it according to your needs):

<a href="#haut" style="padding: 8px 14px; background: rgb(244, 113, 33); color: rgb(255, 255, 255); font-size: 16px; font-weight:bold; text-decoration:none; font-family:Arial, sans-serif; text-transform: uppercase; border-radius: 55px; width: 300px; display:block; margin:0 auto;text-align:center;">Soumettre le formulaire&nbsp;!</a> 

It looks like this (with the custom block we put above):

And there you have it, your anchor has been created to go to the top of your form! By clicking on the button, the user will be sent back to the first HTML block :)

Did this answer your question?