Hyperlinking in Tourial Forms
Last updated
Last updated
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
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:
<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.