42 lines
754 B
Plaintext
42 lines
754 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Dynasty of Knights</title>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
|
|
background: url("/images/dok_bg.png") center / cover no-repeat;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
font-family: sans-serif;
|
|
color: white;
|
|
}
|
|
|
|
.panel {
|
|
background: rgba(0, 0, 0, 0.6);
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
text-align: center;
|
|
width: 400px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="panel">
|
|
<h1>Dynasty of Knights</h1>
|
|
|
|
<p>Launcher bereit</p>
|
|
|
|
<button>Spiel starten</button>
|
|
</div>
|
|
</body>
|
|
</html>
|