diff --git a/online.html b/online.html
index 331ce23..3b1b011 100644
--- a/online.html
+++ b/online.html
@@ -29,7 +29,7 @@
const lastLine = lines[lines.length - 1].trim();
const parts = lastLine.split(' ');
const count = parts[1]; // The second part should be the number
- document.getElementById('count').textContent = `People online: ${count}`;
+ document.getElementById('count').textContent = `Online: ${count}`;
})
.catch(error => {
document.getElementById('count').textContent = 'Error loading data';