Eine HTML für Minecraft erstellen..? | HTML Code | Für Minecraft |

Поделиться
HTML-код
  • Опубликовано: 2 ноя 2024
  • Denn ganzen Code findet ihr hier unten.....!
    📣Willkommen auf dem offiziellen RUclips-Kanal von Funky_HD!📣
    Hier dreht sich alles um Gaming, Spaß und Unterhaltung.
    Auf diesem Kanal findest du eine bunte Mischung aus Gaming-Videos, Lets Plays, lustigen
    Danke fürs Anschauen und bis bald auf Funky_HD!
    Funky
  • ИгрыИгры

Комментарии • 1

  • @Funky_HD
    @Funky_HD  4 месяца назад

    Der HTML CODE:


    Minecraft Server Status

    body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 50px;
    }
    .status {
    margin-top: 20px;
    }

    Minecraft Server Status
    Lade...


    const serverIP = 'yannica.sytes.net';
    async function fetchServerStatus() {
    try {
    const response = await fetch(`api.mcsrvstat.us/2/${serverIP}`);
    const data = await response.json();
    if (data.online) {
    document.getElementById('status').innerText = 'DER SERVER IST ONLINE : )';
    document.getElementById('players').innerText = `Spieler online: ${data.players.online}/${data.players.max}`;
    } else {
    document.getElementById('status').innerText = 'LEIDER IST DER SERVER OFFLINE :( ';
    document.getElementById('players').innerText = '';
    }
    } catch (error) {
    document.getElementById('status').innerText = 'Fehler beim Abrufen des Serverstatus';
    document.getElementById('players').innerText = '';
    console.error('Fehler:', error);
    }
    }
    fetchServerStatus();