To embed this chat into your website, edit your HTML and append this script into your <head> element.
<script src="https://iframe.chat/scripts/main.min.js"></script>
Then, append this snippet anywhere in your <body> element.
<iframe src="https://iframe.chat/embed?chat=YOUR_CHAT_ID" id="chattable"></iframe>
Finally, initialize the chat using JavaScript.
If you have a chattable.css file, you can initialize your chat like this
<script>
chattable.initialize({
stylesheet: "/path/to/your/chattable.css"
});
</script>
If you want to use a theme, intialize your chat like this instead
<script>
chattable.initialize({
theme: "moderno" // set the value to the name of the theme
});
</script>