<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impressum</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
background-color: #121212;
color: #e0e0e0;
padding: 40px 20px;
margin: 0;
}
.container {
max-width: 650px;
margin: 0 auto;
}
h1 {
color: #ffffff;
font-size: 1.8rem;
border-bottom: 1px solid #333;
padding-bottom: 10px;
margin-bottom: 24px;
}
h2 {
color: #ffffff;
font-size: 1.2rem;
margin-top: 24px;
margin-bottom: 8px;
}
p {
margin: 4px 0 12px 0;
}
a {
color: #ff9800;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Impressum</h1>
<h2>Angaben gemäß § 5 DDG</h2>
<p>
Vorname Nachname<br>
Straße Hausnummer<br>
PLZ Ort
</p>
<h2>Kontakt</h2>
<p>
E-Mail: kontakt@deinedomain.de<br>
Telefon: +49 (0) 123 456789
</p>
<h2>Umsatzsteuer</h2>
<p>
<!-- Option A: Wenn Kleinunternehmer nach § 19 UStG: -->
Gemäß § 19 UStG wird keine Umsatzsteuer berechnet.
<!-- Option B: Wenn Regelbesteuerung mit USt-IdNr vorhanden:
Umsatzsteuer-Identifikationsnummer gemäß § 27 a Umsatzsteuergesetz:<br>
DE123456789 -->
</p>
<h2>Verantwortlich für redaktionelle Inhalte (§ 18 Abs. 2 MStV)</h2>
<p>
Vorname Nachname<br>
Straße Hausnummer<br>
PLZ Ort
</p>
</div>
</body>
</html>