-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimprint.html
69 lines (58 loc) · 2.43 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coderr/</title>
<link rel="icon" type="image/png" href="./assets/logo/favicon.png" />
<link rel="stylesheet" href="./shared/styles/variables.css">
<link rel="stylesheet" href="./shared/styles/standard.css">
<link rel="stylesheet" href="./shared/styles/form.css">
<link rel="stylesheet" href="./shared/styles/assets.css">
<link rel="stylesheet" href="./shared/styles/fonts.css">
<link rel="stylesheet" href="./shared/styles/header_footer.css">
<link rel="stylesheet" href="./styles/index.css">
<script src="./shared/scripts/redirect.js"></script>
<script src="./shared/scripts/ui_helper.js"></script>
<script src="./shared/scripts/config.js"></script>
<script src="./shared/scripts/auth.js"></script>
<script src="./shared/scripts/api.js"></script>
<script src="./shared/scripts/user_crud.js"></script>
<script src="./shared/scripts/template/header_template.js"></script>
<script src="./shared/scripts/header.js"></script>
</head>
<body onload="setHeader()" onclick="closeAllOpenedElements()">
<header class="main_header">
<a class="logo" href="./index.html">
<img src="./assets/logo/logo_coderr.svg" alt="" srcset="">
</a>
<div id="head_content_right" class="d_flex_cc_gm head_content_right"></div>
</header>
<main>
<section class="d_flex_cc_gl f_d_c">
<h1 class="font_prime_color">Impressum</h1>
<h2>Angaben gemäß § 5 TMG</h2>
<p>
Ghulammustafa Kakar<br>
Karlstraße 6A<br>
38300 Wolfenbüttel
</p>
<h2>Kontakt</h2>
<p>
Telefon: +49 (0) 151 43356904<br>
E-Mail: <a class="link a" href="mailto:[email protected]">[email protected]</a>
</p>
</section>
</main>
<footer class="main_footer pad_l">
<a class="logo" href="./index.html">
<img src="./assets/logo/logo_coderr_light.svg" alt="" srcset="">
</a>
<p>© 2024 Coderr. All rights reserved.</p>
<div class="d_flex_cc_gm">
<a class="link" href="./imprint.html">Impressum</a>
<a class="link" href="./privacy_policy.html">Datenschutz</a>
</div>
</footer>
</body>
</html>