arenos_www/rules/rules.html
2025-08-30 08:31:33 +02:00

42 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Arenos Pen & Paper</title>
<style>
body {
font-family: Arial, sans-serif;
background: #0a0a0a;
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="https://arenos.danielnagel.at/rules/charakterblatt/Charakterblatt_V1.12.1.pdf" target="_blank">Charakterblatt</a>
<a href="https://arenos.danielnagel.at/rules/charaktererstellung/Charaktererstellung_V1.12.2.pdf" target="_blank">Charakter Erstellung</a>
<a href="https://arenos.danielnagel.at/rules/grundregelwerk/Grundregelwerk_V1.12.2.pdf" target="_blank">Grundregelwerk</a>
</div>
</body>
</html>