-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (124 loc) · 6.01 KB
/
index.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A. Albert GmbH - Marine, Metals, Industry & Yachting</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" class="active">Home</a></li>
<li><a href="products.html">Produkte</a></li>
<li><a href="#divisions">Divisions</a></li>
<li><a href="#about">Über uns</a></li>
<li><a href="contact.html">Kontakt</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-content">
<img src="images/albert-logo.jpg" alt="A. Albert GmbH Logo" class="hero-logo" loading="eager">
<h1>A. Albert GmbH</h1>
<p>Ihr zuverlässiger Partner seit 1880</p>
<a href="contact.html" class="cta-button">Kontaktieren Sie uns</a>
</div>
</section>
<!-- Divisions Section -->
<section id="divisions" class="divisions">
<div class="container">
<h2>Unsere Divisions</h2>
<div class="divisions-grid">
<div class="division-card">
<img src="https://www.albert-gmbh.de/wp-content/uploads/2020/11/marine-albert.jpg" alt="Marine Division">
<h3>Marine</h3>
<p>Komplettausrüster für die Schifffahrt</p>
</div>
<div class="division-card">
<img src="https://www.albert-gmbh.de/wp-content/uploads/2020/11/metals-albert.jpg" alt="Metals Division">
<h3>Metals</h3>
<p>Spezialist für Metallbearbeitung</p>
</div>
<div class="division-card">
<img src="https://www.albert-gmbh.de/wp-content/uploads/2020/11/industry-albert.jpg" alt="Industry Division">
<h3>Industry</h3>
<p>Industrielle Lösungen</p>
</div>
<div class="division-card">
<img src="https://www.albert-gmbh.de/wp-content/uploads/2020/11/yachting-albert.jpg" alt="Yachting Division">
<h3>Yachting</h3>
<p>Exklusive Yachtausrüstung</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<h2>Über uns</h2>
<div class="about-content">
<div class="about-text">
<p>Having our roots in the Hanseatic merchant city of Bremen easily explains why we feel so at home at sea and in the marketplace. Founded in 1880, our family-owned company soon cast away from its local waters to launch its services and spare parts on the international market.</p>
<p>Today, we supply shipbuilders, ship owners, shipping companies, the marine industry and heavy industry with everything they need to get engines and ships moving – whatever their size and type.</p>
<ul class="features">
<li><i class="fas fa-check"></i> Über 140 Jahre Erfahrung</li>
<li><i class="fas fa-check"></i> Internationale Präsenz</li>
<li><i class="fas fa-check"></i> Zertifizierte Qualität</li>
<li><i class="fas fa-check"></i> Individuelle Lösungen</li>
</ul>
</div>
<div class="about-image">
<img src="https://www.albert-gmbh.de/wp-content/uploads/2020/11/albert-company.jpg" alt="A. Albert GmbH">
</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="#divisions">Divisions</a></li>
<li><a href="#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>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>