add imprint page

This commit is contained in:
Eric Blommel
2024-11-16 13:34:59 +01:00
parent 939f8b7116
commit 7566f5e849

49
webseite/impressum.php Normal file
View File

@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impressum</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<style>
.content {
margin: auto;
padding: 2rem;
background: white;
border-radius: 1rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="fixed top-0 w-full bg-white/80 backdrop-blur-lg shadow-sm z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<a href="homepage.php" class="text-2xl font-bold text-purple-600">Lern<span class="text-amber-500">Portal</span></a>
</div>
</div>
</div>
</nav>
<div class="content mt-24 m-8">
<h1 class="text-3xl font-bold text-gray-900 mb-6">Impressum</h1>
<p class="text-gray-600 mb-4">Angaben gemäß § 5 TMG:</p>
<p class="text-gray-600 mb-4">
Horst-Schlämmer-Gedächtnis-Gymnasium<br>
Schätzeleinstraße 31<br>
41515 Grevenbroich<br>
Telefon: 01234 / 567890<br>
E-Mail: info@hsg-gymnasium.de
</p>
<p class="text-gray-600 mb-4">Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV:</p>
<p class="text-gray-600">
Max Mustermann<br>
Schätzeleinstraße 31<br>
41515 Grevenbroich
</p>
</div>
</body>
</html>