-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimprint.html
75 lines (75 loc) · 4.99 KB
/
imprint.html
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<title>Pascal Schlaak | Portfolio</title>
<link rel="icon" type="image/png" href="./imgs/icons/logo_small.svg">
</head>
<body>
<div id="app">
<navbar-normal></navbar-normal>
<navbar-small></navbar-small>
<hamburger></hamburger>
<section id="imprint">
<div class="container" style="padding-top:20vh">
<h2>Imprint </h2>
<h4>Data according to § 5 TMG</h4>
<p class="text">Pascal Schlaak<br />
Egaustraße 9<br />
73432 Aalen
</p>
<h4>Contact</h4>
<p class="text">Telephone: +491632599606<br />
E-mail: [email protected]
</p>
<h4>Liability for content </h4>
<p class="text">As a service provider, we are responsible for our own content on these pages in accordance with the general laws
pursuant to § 7 para.1 TMG. According to §§ 8 to 10 TMG, however, we as a service provider are
not obliged to monitor transmitted or stored third-party information or to search for circumstances that
indicate illegal activity.
</p>
<p class="text"> Obligations to remove or block the use of information according to the general laws remain unaffected. A
liability in this respect is only possible from the time of knowledge of a concrete violation of the law. As
soon as we become aware of such legal infringements, we will remove these contents immediately.
</p>
<h4>Liability for links</h4>
<p class="text">Our offer contains links to external websites of third parties over whose contents we have no influence.
Therefore, we cannot accept any liability for these external contents. The respective provider or operator of
the pages is always responsible for the contents of the linked pages. The linked pages were checked for possible
legal violations at the time of linking. Illegal contents were not recognisable at the time of linking.
</p>
<p class="text">A permanent control of the contents of the linked pages is, however, not reasonable without concrete evidence of
an infringement. If we become aware of any legal infringements, we will remove such links immediately.
</p>
<h4>Copyright</h4>
<p class="text">The content and works on these pages created by the site operators are subject to German copyright law. The
reproduction, processing, distribution and any kind of exploitation outside the limits of copyright law require
the written consent of the respective author or creator. Downloads and copies of this website are only permitted
for private, non-commercial use. If the contents of this website have not been created by the operator, the
copyrights of third parties are respected. In particular, contents of third parties are marked as such. Should
you nevertheless become aware of a copyright infringement, please inform us accordingly. As soon as we become
aware of any legal infringements, we will remove such content immediately.
</p>
<a href="https://www.e-recht24.de/impressum-generator.html">
<p class="text" style="color: #2F58F7">e-recht24</p>
</a>
</div>
</section>
<footer-portfolio></footer-portfolio>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#hamburger, #home, #proj, abo').click(function(){
$("#hamburger").toggleClass('open');
});
});
</script>
<script type="text/javascript" src="./main.js"></script>
</body>
</html>