Tourial Product Documentation
  • 👋Welcome to Tourial!
    • Planning Tours with AI
    • Building Tours with AI
  • 🏁Best Practices & Launching
    • Tour Building Best Practices
    • Before you Launch Check-List
  • 🏗️Building
    • Interactive Tours
      • Record
        • Chrome Extension
          • Downloading the Chrome Extension
          • Troubleshooting
            • Full page screenshot not working
        • Importing Media
      • Edit
        • Interactive Tools
          • Advanced Features
        • Timed Tools
        • Video Trimming
      • Branding
      • Mobile-Optimization
      • HTML Demos (Experimental)
        • Chrome Extension (Capture)
        • Building & Editing
    • Tour Centers
      • Interactive Topics
      • Editing Styles
      • Navigation & Format
      • Supported Content in Tour Centers
        • Adding Google Slides to your Tour Center
      • Upfront Prompts
      • Mobile Optimization
  • 🌎Sharing
    • Embedding Demos
      • Embedding Interactive Demos
        • Lightbox Embed
        • Website Embed
      • Embedding Tour Centers
      • Updating your Embed Code when changes are made
    • Tour Link Sharing
    • Tour Center Link Sharing
    • Share Links
      • How to create a share link
  • GIF Generation
  • 🔢Analytics
    • Tour Analytics
    • Tour Center Analytics
  • ⚙️Admin & Settings
    • Inviting your team
    • Setting your Account Branding
    • Workspaces
      • Create & Add Users to a Workspace
    • User Management
    • White Label Your Account & Content
    • Tourial Forms
      • Form Fails
      • Hyperlinking in Tourial Forms
  • ➕Integrations
    • HubSpot
      • Instant Scheduling with HubSpot Scheduler
      • Tour Engagement Data
        • Slack Notifications with HubSpot
        • Triggering HubSpot Workflows
        • Pushing Engagement Data from HubSpot to SFDC
      • HubSpot Reporting Setup
      • TourPlayer Engagement Data
      • Lead Forms with HubSpot
      • How do I hide the chatbot?
      • How do I hide the Cookie Banner?
      • FAQs
    • Marketo
      • Lead Forms with Marketo
      • Engagement Data with Marketo
        • Slack Notifications with Marketo
        • Approving Marketo Custom Activities
      • Marketo Reporting Setup
    • Partners
      • G2
      • TrustRadius
    • Pardot
      • Lead Forms in Pardot
      • Engagement Data with Pardot
      • How to Create a Pardot Dashboard to Measure Tourial's Impact
    • Salesforce
      • Leads Forms in Salesforce
      • Engagement Data with Salesforce
        • Add Tourial Engagement to record's Lightning page
        • Add Tourial Engagement as Salesforce tab
        • Create an SFDC report using Engagement Data
      • How to Create a Salesforce Dashboard to Measure Tourial's Impact
    • Zapier
    • Calendly
    • Chili Piper
    • Cross-Frame Events
      • Tours
      • Tour Centers
    • Slack
  • Security
    • SSO (Single Sign-on)
    • Uptime Reports
    • Form Compliance
Powered by GitBook
On this page

Was this helpful?

  1. Admin & Settings
  2. Tourial Forms

Hyperlinking in Tourial Forms

PreviousForm FailsNextHubSpot

Last updated 8 months ago

Was this helpful?

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.

⚙️