Bienenfreundliche Bepflanzung

Heimische Stauden, Wildblumenwiesen und blühende Kletterpflanzen entlang der Zäune — für Bienen, Schmetterlinge und eine lebendige Anlage.

€1.00

<!DOCTYPE html>

<html lang="de">

<head>

<meta charset="UTF-8">

<style>

.badge-container {

display: flex;

justify-content: center;

gap: 10px;

padding: 0px;

font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

width: 100%;

}

.badge {

display: inline-flex;

align-items: center;

padding: 8px 16px;

border-radius: 50px;

font-size: 12px;

font-weight: 500;

white-space: nowrap;

}

.dot {

height: 12px;

width: 12px;

border-radius: 50%;

display: inline-block;

margin-right: 10px;

}

.sdg-6 {

background-color: #e1f5fe;

color: #01579b;

}

.sdg-6 .dot {

background-color: #29b6f6;

}

.sdg-12 {

background-color: #f9fbe7;

color: #33691e;

}

.sdg-12 .dot {

background-color: #c0ca33;

}

</style>

</head>

<body>

<div class="badge-container">

<div class="badge sdg-6">

<span class="dot"></span>

SDG 6 · Sauberes Wasser

</div>

<div class="badge sdg-12">

<span class="dot"></span>

SDG 12 · Nachhaltiger Konsum

</div>

</div>

</body>

</html>