Create server.html

This commit is contained in:
TheErrorExe 2025-01-06 14:55:46 +01:00 committed by GitHub
parent fb53299e10
commit 7bfbeeec57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

36
server.html Normal file
View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Info</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">Über uns</a></li>
<li><a href="/server">Server Info</a></li>
</ul>
</nav>
</header>
<section id="server">
<h2>Server Info</h2>
<p>IP: <strong>blockattack.fun</strong></p>
<p>Version: 1.20.4</p>
<p>Besondere Features:</p>
<ul>
<li>Gebietsclaiming</li>
<li>Spannende PvP-Kämpfe</li>
<li>Events und regelmäßige Updates</li>
</ul>
</section>
<footer>
<p>&copy; 2025 Blockattack Server. Alle Rechte vorbehalten. Powered by mine-server.org. Website by TheErrorExe</p>
</footer>
</body>
</html>