-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpressum.html
More file actions
65 lines (55 loc) · 1.63 KB
/
impressum.html
File metadata and controls
65 lines (55 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Impressum</title>
<!--CSS-FILES-->
<link rel="stylesheet" href="css/nav.css" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/overall.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="css/impressum.css" />
<!--JS-FILES-->
<script src="js/include.js"></script>
<script src="js/index.js"></script>
<script src="js/overall.js"></script>
<script src="js/mini_backend.js"></script>
</head>
<body onload="includeHTML()" class="container">
<div w3-include-html="templates/nav.html"></div>
<div class="impressum">
<h1>Impressum</h2>
<br />
<h3>Angaben gemäß § 5 TMG</h3>
<br />
<br />
<p>
<strong>Sebastian Seitz</strong>
<br />
</p>
<br />
<p>
<strong>Peter Rehmann</strong><br />
</p>
<br />
<p>
<strong>Adilet Sharshekeev</strong> <br />
</p>
<br><br>
<p>
<h3>
Verbraucher­streit­beilegung/Universal­schlichtungs­stelle
</h3><br><br>
<p>
Wir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren
vor einer Verbraucherschlichtungsstelle teilzunehmen.
</p>
<p>
Quelle: <a href="https://www.e-recht24.de">https://www.e-recht24.de</a>
</p>
</div>
<div w3-include-html="templates/footer.html"></div>
</body>
</html>