-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimprint.html
110 lines (107 loc) · 5.32 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impressum - A. Albert GmbH</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="container">
<a href="index.html" class="logo">
<img src="images/albert-logo.jpg" alt="A. Albert GmbH Logo" class="logo-img" loading="eager">
</a>
<div class="nav-toggle">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Produkte</a></li>
<li><a href="index.html#divisions">Divisions</a></li>
<li><a href="index.html#about">Über uns</a></li>
<li><a href="contact.html">Kontakt</a></li>
</ul>
</div>
</nav>
<!-- Imprint Section -->
<section id="imprint" class="imprint">
<div class="container">
<div class="imprint-content">
<div class="imprint-image">
<img src="images/bremen.jpg" alt="Bremen City View" loading="lazy">
</div>
<div class="imprint-info">
<h2>Impressum</h2>
<div class="imprint-details">
<div class="imprint-section">
<h3>Managing Director</h3>
<p>Andreas Albert, Dennis Albert</p>
</div>
<div class="imprint-section">
<h3>VAT-No.</h3>
<p>DE 8158 47 714</p>
</div>
<div class="imprint-section">
<h3>Chamber of Commerce No.</h3>
<p>Bremen HRB 35066</p>
</div>
<div class="imprint-section">
<h3>Design</h3>
<p>Alex</p>
</div>
<div class="imprint-section">
<h3>Implementation</h3>
<p>Alex</p>
</div>
<div class="imprint-section gdpr">
<h3>Right to erasure (Art. 17 GDPR)</h3>
<p>In Accordance to the General Data Protection Regulation, which becomes enforceable on 25 May 2018, every individual has the "Right to erasure" (Art. 17 GDPR "Right to be forgotten"). The A. Albert GmbH pays great attention to the new developments within the General Data Protection Regulation and will ensure it's appropriate enforcement within our company.</p>
<p>If you desire to make use of the "Right to erasure" (Art. 17 GDPR) concerning your personal data at A. Albert GmbH, we kindly ask you to please step into contact with our data security commissioner via <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-info">
<div class="footer-logo-container">
<img src="images/albert-logo.jpg" alt="A. Albert GmbH Logo" class="footer-logo" loading="lazy">
</div>
<p class="footer-tagline">Import & Export seit 1880</p>
</div>
<div class="footer-links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Produkte</a></li>
<li><a href="index.html#divisions">Divisions</a></li>
<li><a href="index.html#about">Über uns</a></li>
<li><a href="contact.html">Kontakt</a></li>
</ul>
</div>
<div class="footer-social">
<h3>Social Media</h3>
<div class="social-icons">
<a href="https://www.linkedin.com/company/albert-gmbh-bremen/" target="_blank" rel="noopener"><i class="fab fa-linkedin"></i></a>
<a href="https://www.xing.com/companies/a.albertgmbh" target="_blank" rel="noopener"><i class="fab fa-xing"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 A. Albert GmbH. Alle Rechte vorbehalten.</p>
<a href="imprint.html" class="imprint-link">Impressum</a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>