Plain HTML
The simplest installation. Works on any static website.
Installation
Paste the script tag just before the closing </body> tag in your HTML file.
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My Website</title>
</head>
<body>
<!-- Your page content here -->
<script src="https://cdn.signalog.co/widget.js" data-site-id="YOUR_SITE_ID"></script>
</body>
</html>Multiple pages
Add the script tag to every page where you want the widget to appear. If you use a shared footer or template file, add it there once.
html
<!-- shared/footer.html -->
<footer>
<!-- your footer content -->
</footer>
<script src="https://cdn.signalog.co/widget.js" data-site-id="YOUR_SITE_ID"></script>Static site generators
If your site is generated by Jekyll, Hugo, Eleventy, or similar, add the script to your base layout template — usually _layouts/default.html (Jekyll), layouts/_default/baseof.html (Hugo), or _includes/footer.njk (Eleventy). Then rebuild and deploy.