ทัน – ธรรมปพน sec A Jean QE
✨ THAMPAPON PRATHUM
<html> <head> <title>SVG </title> <style> body{ background:#666; margin:0em; margin-top:2em; font-family:sans-serif; } svg{ background:lightblue; width:90vmin; height:90vmin; display:block; margin:auto; box-shadow:0px 0px 10px #0006; } </style> </head> <body> <svg viewBox="0 0 100 100"> <circle cx="50" cy="50" r="4" fill="#DAA06D"></circle> <rect x="-5" y="55" width="150" height="100" fill="#C19A6B" stroke="#5C4033" stroke-width="5"></rect> <rect x="0" y="90" width="100" height="20" fill="green"></rect> <rect x="20" y="55" width="70" height="40" fill="#adf" stroke="#DAA06D"></rect> <rect x="20" y="55" width="42" height="40" fill="#adf" stroke="#DAA06D"></rect> <rect x="30" y="65" width="20" height="30" fill="#E97451" stroke="#DAA06D"></rect> <polygon fill="brown" stroke="#DAA06D" points="40,15 15,55 65,55"></polygon> <rect x="31" y="15" width="30" height="40" fill="brown" stroke="#DAA06D" transform="skewX(32)"></rect> <circle cx="46" cy="80" r="2" fill="brown" stroke="#DAA06D"></circle> <circle cx="16.6" cy="30" r="3.5" fill="lightpink"></circle> <circle cx=20.9 cy="30" r="3.5" fill="lightpink"></circle> <rect x="-12.9" y="32.3" width="7.2" height="7.2" fill="lightpink" transform="rotate(-45)"></rect> <rect x="69" y="60" width="15" height="15" fill="#eee" stroke="#DAA06D"></rect> <rect x="75.5" y="60.5" width="2" height="14" fill="#DAA06D"></rect> <rect x="69.5" y="66.5" width="14" height="2" fill="#DAA06D"></rect> </svg> </body> </html>