Merge tags let you dynamically personalize a page using values passed in the page URL.
They allow you to display different content to each visitor without creating multiple pages.
A merge tag is a placeholder written like this:
{{name}}
When someone opens your page with a matching value in the URL, the placeholder is automatically replaced.
<https://fastpage.app/welcome?name=John>
Hi {{name}}
Hi john
Merge tags automatically adapt the text case based on how you write them.
| Merge tag | URL value | Result |
|---|---|---|
| {{name}} | John | john |
| {{Name}} | John | John |
| {{NAME}} | John | JOHN |
This allows natural-looking text in titles, sentences, or headings.