# 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

<figure><img src="/files/kbwJ4RyYA8lXTAbmwoKI" alt=""><figcaption></figcaption></figure>

#### 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:**

```html
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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.navless.ai/admin-and-settings/tourial-forms/hyperlinking-in-tourial-forms.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
