-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 988 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minecraft server status</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.server-info {
margin-top: 20px;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Server status</h1>
<div class="server-info">
Last update : <span id="lastUpdated"></span>
</div>
<div class="server-info">
Server protocol : <span id="serverProtocol"></span>
</div>
<div class="server-info">
Server vertion : <span id="serverVersion"></span>
</div>
<div class="server-info">
Online players : <span id="playersInfo"></span>
</div>
<div class="server-info">
Is online : <span id="online"></span>
</div>
<script src="https://mcapi.us/scripts/minecraft.min.js"></script>
<script> src="scrip.js"</script>
</body>
</html>