static

Any Website (HTML)

Add the Chatbot to Any Website (HTML)

You can add the Authava chatbot to your website with a single line of code.

Quick Install

Add this line to your website:

<script defer src="https://cdn.authava.com/chatbot.js" data-id="{{your_id}}"></script>

Once added, the chatbot will load automatically on your site.

Where to place it

Add the script before the closing </body> tag in your HTML.

Example:

<html>
  <body>
    ...
    <script defer src="https://cdn.authava.com/chatbot.js" data-id="{{your_id}}"></script>
  </body>
</html>

Troubleshooting

Keep it simple
If you used AI (ChatGPT, Claude, etc.), make sure it stays a plain <script> tag.
Do not wrap it in JavaScript, dynamically load it, or add event listeners.
This is a one-line install=, if it’s more complex than that, it’s likely wrong.

Check your quotes
Make sure you’re using normal quotes: "
Not curved quotes: “ ”
(This often happens when copying from email or documents.)

Placement matters
Ensure the snippet is placed before the closing </body> tag, and not inside a section of the page that doesn’t actually load.