Inserting Links with HyperCode
How to insert hyperlinks into the pages using HyperCode
Inserting links in your HyperCode code is quite simple. See how
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]
url indicates a valid URL: an image, a site page, a file for download, an external page or site, or an email address.
The "url" property can be omitted and the link can be provided directly after the tag name.
[link="hyperfluxcms.com"]HyperFluxCMS[/link]
target indicates the "Target" where the link will be opened.
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
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]