42 lines
1.0 KiB
HTML
42 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Arenos – Pen & Paper</title>
|
||
<style>
|
||
body {
|
||
font-family: Arial, sans-serif;
|
||
background: #333333;
|
||
color: #f0f0f0;
|
||
text-align: center;
|
||
padding: 50px;
|
||
}
|
||
h1 {
|
||
font-size: 2.5em;
|
||
margin-bottom: 30px;
|
||
}
|
||
.links a {
|
||
display: inline-block;
|
||
margin: 15px;
|
||
padding: 15px 25px;
|
||
background: #222;
|
||
color: #fff;
|
||
text-decoration: none;
|
||
border-radius: 10px;
|
||
transition: background 0.3s;
|
||
}
|
||
.links a:hover {
|
||
background: #444;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<h1>Hier sind die Aktuellen Regeln</h1>
|
||
<div class="links">
|
||
<a href="rules/charakterblatt/Charakterblatt_V1.12.1.pdf" target="_blank">Charakterblatt</a>
|
||
<a href="rules/charaktererstellung/Charaktererstellung_V1.12.2.pdf" target="_blank">Charakter Erstellung</a>
|
||
<a href="rules/grundregelwerk/Grundregelwerk_V1.12.2.pdf" target="_blank">Grundregelwerk</a>
|
||
</div>
|
||
</body>
|
||
</html>
|