-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpressum.html
More file actions
72 lines (67 loc) · 1.6 KB
/
impressum.html
File metadata and controls
72 lines (67 loc) · 1.6 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
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Impressum - Transient Wiki</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
line-height: 1.6;
background-color: #f9f9f9;
color: #333;
}
h1 {
text-align: center;
margin-bottom: 40px;
}
section {
max-width: 600px;
margin: 0 auto 20px;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
section h2 {
margin-top: 0;
color: #555;
}
</style>
</head>
<body>
<h1>Impressum</h1>
<section>
<h2>Anschrift</h2>
<p>
Julien Fuhr<br>
Joseph-Haydn-Straße 2<br>
65549 Limburg<br>
Deutschland
</p>
</section>
<section>
<h2>Kontakt</h2>
<p>
<a href="mailto:business@transientcodes.de">business@transientcodes.de</a>
</p>
</section>
<section>
<h2>Vertretungsberechtigte</h2>
<p>Julien Fuhr</p>
</section>
<section>
<h2>Verantwortliche für den Inhalt</h2>
<p>
Julien Fuhr<br>
Kolja Menzel
</p>
</section>
<section>
<h2>Urheberrecht</h2>
<p>TransientCodes</p>
</section>
</body>
</html>