Загрузка данных
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 900" width="800" height="900">
<defs>
<!-- Градиент для облаков -->
<linearGradient id="gradCloud" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#b3d9ff;stop-opacity:1" />
</linearGradient>
<linearGradient id="gradCloud2" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#ffe6f0;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffb3d9;stop-opacity:1" />
</linearGradient>
<linearGradient id="gradCloud3" x1="100%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#e6ffe6;stop-opacity:1" />
<stop offset="100%" style="stop-color:#99ff99;stop-opacity:1" />
</linearGradient>
</defs>
<!-- ========== УПРАЖНЕНИЕ 1 ========== -->
<!-- 1. Текст "Привет!" (с тенью и градиентом, имитация текстового эффекта) -->
<defs>
<linearGradient id="textGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ff6600" />
<stop offset="50%" style="stop-color:#ff0000" />
<stop offset="100%" style="stop-color:#cc00ff" />
</linearGradient>
</defs>
<text x="400" y="80" font-family="Arial, sans-serif" font-size="60" font-weight="bold" text-anchor="middle" fill="url(#textGrad)" stroke="#000" stroke-width="2">
ПРИВЕТ!
</text>
<!-- Добавим декоративную рамку как на рисунке 1 -->
<rect x="100" y="30" width="600" height="80" rx="15" fill="none" stroke="#555" stroke-width="2" stroke-dasharray="6,4"/>
<!-- 2. Три облака (разной формы) с градиентом и выравниванием -->
<!-- Облако 1 (стандартная форма) -->
<g transform="translate(60, 160) scale(1.2)">
<path d="M80,30 Q80,0 110,0 Q130,0 140,15 Q160,5 175,15 Q195,5 200,30 Q230,30 230,55 Q230,80 200,80 L80,80 Q50,80 50,55 Q50,30 80,30 Z" fill="url(#gradCloud)" stroke="#2266aa" stroke-width="2"/>
</g>
<!-- Облако 2 (изменённая форма: вытянутое с острым углом) -->
<g transform="translate(280, 150) scale(1.2)">
<path d="M60,30 Q60,0 95,5 Q120,-5 135,10 Q155,0 170,15 Q190,15 195,40 Q225,45 225,70 Q225,95 195,95 L60,95 Q30,95 30,70 Q30,45 60,30 Z" fill="url(#gradCloud2)" stroke="#aa2266" stroke-width="2"/>
</g>
<!-- Облако 3 (изменённая форма: приплюснутое, с удалёнными узлами) -->
<g transform="translate(500, 155) scale(1.1)">
<path d="M80,40 Q80,15 110,20 Q130,10 145,25 Q165,15 180,30 Q200,35 195,60 Q220,70 210,90 L80,90 Q50,90 50,70 Q50,45 80,40 Z" fill="url(#gradCloud3)" stroke="#66aa22" stroke-width="2"/>
</g>
<!-- 3. Цветок (бутон + стебель + лист) -->
<defs>
<!-- Один цветок: лепестки, серединка, стебель, лист -->
<g id="flower">
<!-- Лепестки -->
<ellipse cx="0" cy="-20" rx="12" ry="20" fill="#ff6699" transform="rotate(0)"/>
<ellipse cx="0" cy="-20" rx="12" ry="20" fill="#ff6699" transform="rotate(60)"/>
<ellipse cx="0" cy="-20" rx="12" ry="20" fill="#ff6699" transform="rotate(120)"/>
<ellipse cx="0" cy="-20" rx="12" ry="20" fill="#ff6699" transform="rotate(180)"/>
<ellipse cx="0" cy="-20" rx="12" ry="20" fill="#ff6699" transform="rotate(240)"/>
<ellipse cx="0" cy="-20" rx="12" ry="20" fill="#ff6699" transform="rotate(300)"/>
<!-- Серединка -->
<circle cx="0" cy="0" r="10" fill="#ffcc33" stroke="#cc9900" stroke-width="1.5"/>
<!-- Стебель (кривая) -->
<path d="M0,10 Q5,40 -5,80" fill="none" stroke="#339900" stroke-width="4" stroke-linecap="round"/>
<!-- Лист (контур, залитый зелёным) -->
<path d="M-5,50 Q-25,40 -30,55 Q-20,65 -5,60 Z" fill="#33cc33" stroke="#226622" stroke-width="1.5"/>
</g>
</defs>
<!-- Размещаем несколько цветков в ряд (клумба) с помощью распределения -->
<!-- Цветок 1 -->
<use href="#flower" x="100" y="700" transform="scale(1.2)" />
<!-- Цветок 2 -->
<use href="#flower" x="250" y="700" transform="scale(1.2)" />
<!-- Цветок 3 -->
<use href="#flower" x="400" y="700" transform="scale(1.2)" />
<!-- Цветок 4 -->
<use href="#flower" x="550" y="700" transform="scale(1.2)" />
<!-- Цветок 5 -->
<use href="#flower" x="700" y="700" transform="scale(1.2)" />
<!-- Подпись "Рисунок 6" как в методичке -->
<text x="400" y="800" font-family="Arial" font-size="14" text-anchor="middle" fill="#333">Рисунок 6 — Клумба с цветами (распределение по горизонтали)</text>
<!-- ========== УПРАЖНЕНИЕ 2 : Организационная схема "Приемная комиссия" ========== -->
<g transform="translate(50, 500)">
<!-- Большой прямоугольник (Приемная комиссия) -->
<rect x="80" y="0" width="200" height="60" rx="8" fill="#d9e6f2" stroke="#006699" stroke-width="2"/>
<text x="180" y="25" font-family="Arial" font-size="13" font-weight="bold" text-anchor="middle" fill="#003366">ПРИЕМНАЯ</text>
<text x="180" y="45" font-family="Arial" font-size="13" font-weight="bold" text-anchor="middle" fill="#003366">КОМИССИЯ</text>
<!-- Два маленьких прямоугольника внутри внизу (Секретарь и Члены комиссии) -->
<rect x="100" y="80" width="70" height="40" rx="5" fill="#fff2cc" stroke="#cc9900" stroke-width="2"/>
<text x="135" y="105" font-family="Arial" font-size="10" text-anchor="middle" fill="#664400">Секретарь</text>
<rect x="190" y="80" width="70" height="40" rx="5" fill="#fff2cc" stroke="#cc9900" stroke-width="2"/>
<text x="225" y="105" font-family="Arial" font-size="10" text-anchor="middle" fill="#664400">Члены</text>
<!-- Прямоугольник справа (Абитуриенты / Заявления) -->
<rect x="370" y="20" width="120" height="40" rx="6" fill="#e6f2ff" stroke="#3399ff" stroke-width="2"/>
<text x="430" y="45" font-family="Arial" font-size="11" text-anchor="middle" fill="#003366">Приём заявлений</text>
<!-- Соединительные линии (коннекторы) -->
<!-- От большого к левому маленькому -->
<line x1="180" y1="60" x2="135" y2="80" stroke="#666" stroke-width="2" marker-end="url(#arrow)"/>
<!-- От большого к правому маленькому -->
<line x1="180" y1="60" x2="225" y2="80" stroke="#666" stroke-width="2" marker-end="url(#arrow)"/>
<!-- От большого к правому блоку -->
<line x1="280" y1="30" x2="370" y2="40" stroke="#666" stroke-width="2" marker-end="url(#arrow)"/>
<!-- Стрелочка для соединителей -->
<defs>
<marker id="arrow" markerWidth="8" markerHeight="8" refX="8" refY="4" orient="auto">
<path d="M0,0 L8,4 L0,8 Z" fill="#666"/>
</marker>
</defs>
<!-- Подпись схемы -->
<text x="260" y="160" font-family="Arial" font-size="14" font-weight="bold" text-anchor="middle" fill="#003366">Организационная схема «Приемная комиссия»</text>
</g>
</svg>