A text bot can include links to various internet resources in its messages. This helps customers quickly and conveniently find the necessary information: simply follow the link to access the desired website.
Links can be placed in Information, Question, and Pause blocks.
Links only work in the web widget and Telegram. In VK, WhatsApp, and Viber, hyperlinks are not supported.
In HTML language, the <a> tag and its href attribute are used to create links:
<a> tag, which creates the text of the link displayed in the dialogue;href attribute with the address of the target page to which the transition is made.To open the link in the current browser tab, apply the code:
<a href="URL">Link text</a>
To open the link in a new tab, use the code:
<a href="URL" target="_blank">Link text</a>
You can visit our website by <a href="https://twin-ai.com/"target="blank">clicking this link</a>.