Install on any website
Add your site in the Askiraz dashboard first — you'll get a script tag with your own siteId.
Every install method comes down to the same thing: paste one script tag right before the closing </body> tag on every page.
<script src="https://askiraz.com/track.js"
data-site="YOUR_SITE_ID" defer></script>Plain HTML
Paste the tag directly before </body> in your HTML file(s).
Next.js
Add it to your root layout, once, so it loads on every page:
// app/layout.js
return (
<html>
<body>
{children}
<script src="https://askiraz.com/track.js" data-site="YOUR_SITE_ID" defer />
</body>
</html>
);Webflow
Project Settings → Custom Code → paste the tag into "Footer Code", then re-publish your site.
Wix
Settings → Custom Code → Add Code → paste the tag, set it to load on all pages, place it in the "Body — end" section.
Squarespace
Settings → Advanced → Code Injection → paste the tag into the "Footer" box.
Google Tag Manager
Create a new tag → Custom HTML → paste the tag → set the trigger to "All Pages" → publish the container.
Confirm it's working
Visit your site once, then check your Askiraz site page — a new row should appear in the visitor table within a few seconds.