pixelportfolio-pro / impressum.html
Scroll26's picture
This Portfolio is for a Freelancer/Media Designer. While he does make Websites, his main focus is on Animation/3D/Videogames. He also has some experience with A.I. The website should be modern, dark and most importantly unique. It also needs an Impressum and Datenschutz page
a07a2f6 verified
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impressum | NexusMedia</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-900 text-gray-200">
<custom-navbar></custom-navbar>
<main class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="mb-12">
<h1 class="text-4xl font-bold text-white mb-6">Impressum</h1>
<div class="bg-gray-800 p-8 rounded-xl shadow-lg border border-gray-700">
<h2 class="text-2xl font-bold text-white mb-4">Angaben gemäß § 5 TMG</h2>
<div class="space-y-4">
<div>
<p class="font-medium text-gray-300">Max Mustermann</p>
<p class="text-gray-400">NexusMedia Studios</p>
</div>
<div>
<p class="font-medium text-gray-300">Adresse</p>
<p class="text-gray-400">Musterstraße 123<br>12345 Musterstadt</p>
</div>
<div>
<p class="font-medium text-gray-300">Kontakt</p>
<p class="text-gray-400">Telefon: +49 123 456789<br>E-Mail: contact@nexusmedia.example</p>
</div>
<div>
<p class="font-medium text-gray-300">Umsatzsteuer-ID</p>
<p class="text-gray-400">DE123456789</p>
</div>
<div>
<p class="font-medium text-gray-300">Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV</p>
<p class="text-gray-400">Max Mustermann</p>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
</body>
</html>