<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grünes Paradies Gartencenter</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #4CAF50;
color: white;
padding: 1rem 0;
text-align: center;
}
nav {
background-color: #333;
overflow: hidden;
position: sticky;
top: 0;
z-index: 1000;
}
nav a {
float: left;
display: block;
color: white;
text-decoration: none;
padding: 14px 20px;
text-align: center;
transition: background-color 0.3s;
}
nav a:hover {
background-color: #4CAF50;
}
section {
padding: 20px;
}
#about, #products, #gallery, #contact {
padding: 40px 20px;
}
.products-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.product {
border: 1px solid #ddd;
border-radius: 5px;
padding: 20px;
text-align: center;
width: 200px;
transition: transform 0.3s;
}
.product:hover {
transform: scale(1.05);
border-color: #4CAF50;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
.gallery img {
width: 200px;
height: 150px;
object-fit: cover;
border: 2px solid #ddd;
border-radius: 5px;
transition: transform 0.3s, border-color 0.3s;
}
.gallery img:hover {
transform: scale(1.1);
border-color: #4CAF50;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Grünes Paradies Gartencenter</h1>
<p>Ihr Experte für Pflanzen, Gartenzubehör und mehr</p>
</header>
<nav>
<a href="#about">Über uns</a>
<a href="#products">Produkte</a>
<a href="#gallery">Galerie</a>
<a href="#contact">Kontakt</a>
</nav>
<section id="about">
<h2>Über uns</h2>
<p>Willkommen im Grünen Paradies! Wir sind Ihr lokales Gartencenter mit einer großen Auswahl an Pflanzen, Blumen und Gartenzubehör. Unser Team aus Experten hilft Ihnen gerne, Ihren Garten in eine grüne Oase zu verwandeln.</p>
</section>
<section id="products">
<h2>Unsere Produkte</h2>
<div class="products-grid">
<div class="product">
<h3>Blumen</h3>
<p>Farbenfrohe Blumen für Ihren Garten.</p>
</div>
<div class="product">
<h3>Pflanzen</h3>
<p>Robuste Pflanzen für jedes Klima.</p>
</div>
<div class="product">
<h3>Gartenzubehör</h3>
<p>Werkzeuge und Zubehör für die Gartenpflege.</p>
</div>
<div class="product">
<h3>Dünger</h3>
<p>Hochwertige Dünger für gesunde Pflanzen.</p>
</div>
</div>
</section>
<section id="gallery">
<h2>Galerie</h2>
<div class="gallery">
<img src="https://via.placeholder.com/200x150" alt="Blumenbeet">
<img src="https://via.placeholder.com/200x150" alt="Gartenpflanzen">
<img src="https://via.placeholder.com/200x150" alt="Gartenzubehör">
<img src="https://via.placeholder.com/200x150" alt="Dünger">
<img src="https://via.placeholder.com/200x150" alt="Blumenstrauß">
<img src="https://via.placeholder.com/200x150" alt="Pflanzen in Töpfen">
</div>
</section>
<section id="contact">
<h2>Kontakt</h2>
<p>Besuchen Sie uns in der Musterstraße 123, 12345 Musterstadt</p>
<p>Telefon: 01234-567890</p>
<p>Email: info@gruenesparadies.de</p>
</section>
<footer>
<p>&WCF_AMPERSAND© 2024 Grünes Paradies Gartencenter. Alle Rechte vorbehalten.</p>
</footer>
</body>
</html>