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
|
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impressum – decentsoftwa.re</title>
<style>
body {
font-family: sans-serif;
font-size: 18px;
line-height: 1.5em;
margin: 0 auto;
max-width: 60ch;
padding: 2em 1em;
background: #fff;
color: #111;
}
@media (prefers-color-scheme: dark) {
body { background: #1a1a1a; color: #ddd; }
a { color: #adf; }
}
h1 { font-weight: 300; }
nav { margin-bottom: 2em; }
</style>
</head>
<body>
<nav><a href="/">← decentsoftwa.re</a></nav>
<h1>Impressum</h1>
<p>Angaben gemäß § 5 TMG</p>
<p>
Philip Patsch<br>
Zimmererstr. 22<br>
86153 Augsburg
</p>
<p>Kontakt: <a href="mailto:philip@decentsoftwa.re">philip@decentsoftwa.re</a></p>
</body>
</html>
|