<svg width="300" height="200" xmlns="http://www.w3.org/2000/svg"> <!-- Dein Inhalt hier --> </svg>
<rect x="10" y="10" width="100" height="80" fill="lightblue" />
<circle cx="50" cy="50" r="40" fill="coral" />
<ellipse cx="75" cy="50" rx="70" ry="30" fill="khaki" />
<line x1="0" y1="0" x2="100" y2="100" stroke="black" stroke-width="4" />
<polygon points="50,5 100,95 5,95" fill="limegreen" />
<text x="10" y="50" font-family="Verdana" font-size="35" fill="darkviolet">SVG</text>