Hyperlinking in Tourial Forms
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. Pictured below is where you can include opt-in text in your Tourial forms

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.
Last updated
Was this helpful?