-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpressum_kiosk.html
More file actions
67 lines (57 loc) · 1.67 KB
/
impressum_kiosk.html
File metadata and controls
67 lines (57 loc) · 1.67 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Impressum – NEUROSONIC</title>
<style>
body {
background-color: #111;
color: #ccc;
font-family: 'Avenir', 'Helvetica Neue', sans-serif;
font-size: 0.95rem;
line-height: 1.6;
margin: 0;
padding: 40px 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
a {
color: #ccc;
text-decoration: underline;
}
hr {
border: none;
border-top: 1px solid #444;
margin: 40px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Impressum</h1>
<p><strong>Angaben gemäß § 5 TMG:</strong><br />
Sofie Valk<br />
Stephanstrasse 1a<br />
04103 Leipzig<br />
Deutschland</p>
<p><strong>Kontakt:</strong><br />
E-Mail: <a href="mailto:[email protected]">[email protected]</a></p>
<p><strong>Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV:</strong><br />
Sofie Valk</p>
<hr />
<h2>Hinweis zur Musiknutzung</h2>
<p>
Einige der auf dieser Website verwendeten Musikstücke sind urheberrechtlich geschützt und bei der GEMA registriert.
Die Rechte liegen bei den jeweiligen Komponisten</em>.
Die Nutzung erfolgt mit ausdrücklicher Genehmigung der Rechteinhaber.
</p>
<p>
Die Website dient ausschließlich künstlerisch-wissenschaftlichen, nicht-kommerziellen Zwecken im Rahmen eines Forschungs- und Kunstprojekts.
Bei Rückfragen kontaktieren Sie uns bitte unter <a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
</body>
</html>