HyperFluxCMS

Fast. Flexible. Free.

HyperFluxCMS

Inserting Links with HyperCode

How to insert hyperlinks into the pages using HyperCode

published 01/01/2025 15:09, updated 04/13/2026 22:37

Inserting links in your HyperCode code is quite simple. See how

Tag [link]: Insert hyperlink

Inserts a link, which can be to another page on the same site, a file for download, an external page or site, or an email address.

The text that is written after the [link] and before the closing via [/link] or [/] will be the text marked as a link, on which the visitor should click to open the link.

Syntax:

[link url="xxxx" target="target"]text[/link]

Properties:

url indicates a valid URL: an image, a site page, a file for download, an external page or site, or an email address.

Anonymous property:

The "url" property can be omitted and the link can be provided directly after the tag name.

[link="hyperfluxcms.com"]HyperFluxCMS[/link]

Additional properties

target indicates the "Target" where the link will be opened.

  • If not provided, the link will be opened by default and if possible, in the same browser window or tab where the current page was being displayed.
  • If it is "_blank", the link will be opened, by default, in a new browser window or tab.
  • If it is a name different from "_blank", it will be opened in a new browser tab or window, or if there is a tab or window that was opened with that specific name, it will be reused to open the new link.

Like most HyperCode Tags, link optionally accepts the properties class, style, and id. See Class, Style, id

Examples:

[link url="https://hyperfluxcms.com"]HyperFluxCMS Official Website, opened in the same tab[/link]
[link url="https://hyperfluxcms.com" target="_blank"]HyperFluxCMS Official Website, opened in a new tab[/link]
[link url="https://hyperfluxcms.com" target="help"]HyperFluxCMS Official Website, opened in a tab called "help" or creating a new one if necessary[/link]

HyperFluxCMS Official Website, opened in the same tab
HyperFluxCMS Official Website, opened in a new tab
HyperFluxCMS Official Website, opened in a tab called "help" or creating a new one if necessary

Tag [url]: Insert hyperlink

The url tag is exactly the same as the link tag, being just an alternative name for the same tag, with the same functions and properties.

Example:

[url="https://hyperfluxcms.com"]HyperFluxCMS Official Website[url]
is exactly the same as
[link="https://hyperfluxcms.com"]HyperFluxCMS Official Website[link]