SVG Transformations
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 200 100"> <rect x="10" y="10" width="40" height="40" fill="#3498db" /> <rect x="10" y="10" width="40" height="40" fill="#e74c3c" transform="translate(80, 30)" /> </svg> </body> </html>