27 lines
943 B
Text
27 lines
943 B
Text
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600">
|
|
<!-- Gradient Background -->
|
|
<defs>
|
|
<linearGradient id="grad" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#ff69b4;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#ffc0cb;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<rect width="800" height="600" fill="url(#grad)"/>
|
|
|
|
<!-- Title -->
|
|
<text x="400" y="250" font-size="60" font-weight="bold" text-anchor="middle" fill="white" font-family="Arial">
|
|
David & Karo
|
|
</text>
|
|
|
|
<!-- Subtitle -->
|
|
<text x="400" y="320" font-size="36" text-anchor="middle" fill="white" font-family="Arial">
|
|
🌸 Team Projekt 🌸
|
|
</text>
|
|
|
|
<!-- Flowers -->
|
|
<text x="150" y="150" font-size="80">🌸</text>
|
|
<text x="650" y="150" font-size="80">🌺</text>
|
|
<text x="100" y="500" font-size="80">🌷</text>
|
|
<text x="700" y="500" font-size="80">🌼</text>
|
|
</svg>
|