15 lines
789 B
XML
15 lines
789 B
XML
<svg width="300" height="200" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<linearGradient id="grad4" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#f59e0b;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#d97706;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="300" height="200" fill="url(#grad4)"/>
|
|
<rect x="100" y="60" width="100" height="80" fill="white" opacity="0.9" rx="8"/>
|
|
<circle cx="120" cy="80" r="8" fill="#f59e0b"/>
|
|
<rect x="110" y="100" width="60" height="4" fill="#f59e0b" rx="2"/>
|
|
<rect x="110" y="110" width="40" height="4" fill="#f59e0b" rx="2"/>
|
|
<text x="150" y="170" font-family="Arial, sans-serif" font-size="16" font-weight="bold" fill="white" text-anchor="middle">Branding</text>
|
|
</svg>
|