-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpressum.html
More file actions
80 lines (75 loc) · 2.97 KB
/
Copy pathimpressum.html
File metadata and controls
80 lines (75 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, follow">
<title>Impressum — MXmap</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #222; background: #fff; }
#header {
background: #1a1a2e; color: #fff; height: 44px; padding: 0 16px;
display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.header-left { display: flex; align-items: center; gap: 10px; }
.brand { font-size: 17px; font-weight: 700; white-space: nowrap; margin: 0; }
.brand a { color: #fff; text-decoration: none; }
.header-nav { display: flex; align-items: center; gap: 12px; }
.header-link { color: #a0a0b0; font-size: 12px; text-decoration: none; }
.header-link:hover { color: #fff; }
.header-link.active { color: #fff; }
@media (max-width: 600px) {
.header-link { font-size: 11px; }
}
main {
max-width: 720px; margin: 0 auto; padding: 32px 20px 48px;
line-height: 1.7; font-size: 15px;
}
h1 { font-size: 22px; font-weight: 700; color: #1a1a2e; margin-bottom: 24px; }
h2 { font-size: 17px; font-weight: 600; color: #1a1a2e; margin-top: 28px; margin-bottom: 8px; }
p { margin-bottom: 12px; }
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }
footer {
max-width: 720px; margin: 0 auto; padding: 24px 20px;
border-top: 1px solid #e2e4e8; font-size: 13px; color: #888;
}
footer a { color: #888; }
footer a:hover { color: #555; }
</style>
</head>
<body>
<header id="header">
<div class="header-left">
<h1 class="brand"><a href="/">MXmap</a></h1>
</div>
<nav class="header-nav">
<a href="/" class="header-link">Karte</a>
<a href="/impressum.html" class="header-link active">Impressum</a>
<a href="/datenschutz.html" class="header-link">Datenschutz</a>
</nav>
</header>
<main>
<h1>Impressum</h1>
<h2>Angaben gemäss UWG</h2>
<p>
David Huser<br>
Vonmattstrasse 24<br>
CH-6003 Luzern<br>
Schweiz
</p>
<h2>Kontakt</h2>
<p>davidhus@pm.me</p>
<h2>Verantwortlich für den Inhalt</h2>
<p>David Huser</p>
<h2>Haftungsausschluss</h2>
<p>Die Daten auf dieser Website basieren auf öffentlichen DNS-Einträgen (MX- und SPF-Records). DNS-Einträge zeigen das Mail-Routing und autorisierte Absender an, nicht zwingend den tatsächlichen Speicherort der Daten. Es wird keine Gewähr für die Richtigkeit, Vollständigkeit oder Aktualität der bereitgestellten Informationen übernommen.</p>
<h2>Urheberrecht</h2>
<p>Der Quellcode dieses Projekts steht unter der <a href="https://opensource.org/licenses/MIT">MIT-Lizenz</a> und ist auf <a href="https://github.com/davidhuser/mxmap" target="_blank">GitHub</a> verfügbar.</p>
</main>
<footer>
© David Huser · <a href="/datenschutz.html">Datenschutzerklärung</a>
</footer>
</body>
</html>