Counter Service

Simple, private, shared page-view counter running on ceterum.si

Live Demo — Visits to this page:

000000

How to use it

Add this small script to any page you want to count:

<script>
fetch('https://counter.ceterum.si/counter.php?id=YOUR_UNIQUE_ID')
    .then(r => r.text())
    .then(count => {
        document.getElementById('your-counter').textContent = count;
    });
</script>

Example

Replace YOUR_UNIQUE_ID with something unique:

https://counter.ceterum.si/counter.php?id=https://yourdomain.com/page

Features