staticpage.html 1017 B

12345678910111213141516171819202122232425262728293031323334
  1. <!doctype html>
  2. <title>Teamspeak Server Status</title>
  3. <style>
  4. body {
  5. margin: 0px 0px 0px 0px;
  6. padding: 0px 0px 0px 0px;
  7. font-family: verdana, arial, helvetica, sans-serif;
  8. color: #ccc;
  9. background-color: #333;
  10. }
  11. h1 {
  12. font-size: 24px;
  13. line-height: 44px;
  14. font-weight: bold;
  15. margin-top: 0;
  16. margin-bottom: 0;
  17. }
  18. </style>
  19. <!-- <marquee direction="up" style="height 600px" behavior="alternate"> -->
  20. <!-- <marquee direction="right" style="width 600px" behavior="alternate"> -->
  21. <div class="page">
  22. <h1>TeamSpeak Server Status</h1>
  23. <span id="target"/>
  24. </div>
  25. <!-- </marquee> -->
  26. <!-- </marquee> -->
  27. <script type="text/javascript">
  28. const update = async () => {
  29. const data = await fetch("https://kirkleon.ddns.net/teamspeak/api");
  30. document.getElementById("target").textContent = JSON.stringify(data);
  31. }
  32. await update();
  33. setInterval(update, 5);
  34. </script>