1
0
This commit is contained in:
matt 2025-02-01 10:48:19 +01:00
parent 434a85f39e
commit 78d7c0f2f8

View File

@ -1,32 +1,86 @@
<html> <!DOCTYPE html>
<head> <html lang="de">
<title>Creative Crafter</title> <head>
<link href="" rel="stylesheet"> <meta charset="UTF-8">
<style> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@font-face { <title>Creative Crafter</title>
font-family: "Titillium"; <link href="" rel="stylesheet">
src: url("/Titillium-Web-Regular.ttf"); <style>
} @font-face {
body { font-family: "Titillium";
font-family: 'Titillium'; src: url("/Titillium-Web-Regular.ttf");
} }
h1 { body {
text-align: center; font-family: 'Titillium';
} height: 100%;
h2 { margin: 0;
text-align: center; display: flex;
} flex-direction: column;
</style> align-items: center;
</head> text-align: center;
<body> background-color: #e6f7ff; /* Leichtes Blau */
<h1><img src="/icons/Controller.png" height="150svh"> }
<br/> h1 {
Creative Crafter</h1> text-align: center;
}
h2 {
text-align: center;
}
h1, h2, h3 {
text-align: center;
}
.category-container {
width: 80%;
max-width: 800px;
margin-top: 20px;
}
.category {
padding: 15px;
border: 1px solid #ccc;
border-radius: 8px;
margin: 10px 0;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
text-align: left;
}
.category-title {
font-size: 1.2em;
font-weight: bold;
margin-bottom: 5px;
}
.category-description {
font-size: 1em;
margin-bottom: 10px;
}
.category a {
color: #007bff;
text-decoration: none;
}
.category a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1><img src="/icons/Controller.png" height="150svh"><br/>Creative Crafter</h1>
<h1>Meine Spiele</h1>
<div class="category-container">
<div class="category">
<div class="category-title">Abenteuer</div>
<div class="category-description">Erlebe spannende Abenteuer in verschiedenen Welten und setze dich gegen deine Gegner durch.</div>
</body> <a href="/programmieren/spiele/abenteuer">Mehr erfahren</a>
</div>
<div class="category">
<div class="category-title">Puzzle</div>
<div class="category-description">Teste deine Logik und Problemlösungsfähigkeiten mit unseren herausfordernden Puzzlespielen.</div>
<a href="/programmieren/spiele/puzzle">Mehr erfahren</a>
</div>
<div class="category">
<div class="category-title">Action</div>
<div class="category-description">Actiongeladene Spiele, die dein Adrenalin in die Höhe treiben. Kämpfe, schieße und erobere!</div>
<a href="/programmieren/spiele/action">Mehr erfahren</a>
</div>
</div>
</body>
</html> </html>