<?xml version="1.0"?>

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400">
  <g fill="yellow" stroke="black" stroke-width="1">
    <!-- translation -->
    <rect x="10" y="10" width="50" height="50"/>
    <rect x="10" y="10" width="50" height="50"
      transform="translate(20 20)"/>
    <!-- rotation -->
    <rect x="200" y="10" width="50" height="50"/>
    <rect x="200" y="80" width="50" height="50"
      transform="rotate(20 225,105)"/>
    <!-- scaling -->
    <text x="10" y="200" font-size="24pt" transform="scale(2 1) rotate(10 200 200)">
      Scaled text
    </text>
    <!-- skew -->
    <rect x="175" y="300" width="50" height="50"
      transform="skewX(20)"/>
  </g>
</svg>

