<div id="livescore-box">
Loading live matches...
</div>

<script>
fetch("https://xscore.co.ke/livescore.php")
.then(res => res.text())
.then(data => {
  document.getElementById("livescore-box").innerHTML = data;
})
.catch(() => {
  document.getElementById("livescore-box").innerHTML =
    "Live scores temporarily unavailable.";
});
</script>