Navless

Hyperlinking in Tourial Forms | Navless Product Documentation

The documentation explains how to add clickable hyperlinks to the opt-in text of Tourial forms by embedding HTML anchor (`<a>`) tags with `href` attributes linking to URLs like Terms of Service and Privacy Notice, enabling users to access these documents directly from the form.

Adding Hyperlinks to Your "Opt-In Text" in Forms

If you want to include clickable hyperlinks in your form's opt-in text, you'll need to use a bit of HTML. This allows users to easily access your Terms of Service, Privacy Notice, or any other important document directly from the form.

How to Add Hyperlinks Using HTML

To add a hyperlink, you'll need to use the <a> HTML tag. Below is a simple example of how to do this:

Original Text:

"By filling out and submitting this form, you confirm that you agree to our Terms of Service. For more information on how we process personal information, please refer to our Privacy Notice."

With HTML Hyperlinks:

By filling out and submitting this form, you confirm that you agree to our <a href="https://www.yourwebsite.com/terms-of-service">Terms of Service</a>. For more information on how we process personal information, please refer to our published <a href="https://www.yourwebsite.com/privacy-notice">Privacy Notice</a>.

Breakdown of the HTML Tag

  • <a>: This is the anchor tag that creates the hyperlink.
  • href: This attribute contains the URL you want to link to.
  • The text between the opening <a> tag and the closing </a> tag is what the user will see as the clickable link.

That's it! Just replace the URLs with your own, and you'll have clickable links in your form.