SVG 1 B-Arin 644070115 Anuwat (Copy 18723)
✨ ANUWAT PRASIT
<html> <head> <title>SVG </title> <style> body{ background:#111; margin:0em; margin-top:2em; font-family:sans-serif; } svg{ background:linear-gradient(270deg, #de6b28 10%, #438696); 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="60" cy="47" r="8" fill="orange" stroke="black" stroke-width="0.5"/> <circle cx="90" cy="90" r="50" fill="green" stroke="black" stroke-width="0.5"/> <circle cx="30" cy="90" r="50" fill="green" stroke="black" stroke-width="0.5"/> <rect width="8" height="20" x="60" y="55" fill="#233b66" stroke="black" stroke-width="0.5"/> <polygon points="50,50 75,75 25,75" fill="red" stroke="black" stroke-width="0.5"/> <rect width="40" height="25" x="30" y="75" fill="#978d83" stroke="black" stroke-width="0.5"/> <rect width="10" height="15" x="55" y="85" fill="#233b66" stroke="black" stroke-width="0.5"/> <circle cx="63" cy="93" r="1" fill="black" stroke="black" stroke-width="0.5"/> <circle cx="40" cy="85" r="4" fill="yellow" stroke="black" stroke-width="0.5"/> <circle cx="40" cy="20" r="7" fill="yellow" stroke="black" stroke-width="0.5"/> <ellipse cx="40" cy="25" rx="20" ry="5"/> <circle cx="25" cy="25" r="2" fill="yellow" stroke="black" stroke-width="0.5"/> <circle cx="30" cy="25" r="2" fill="yellow" stroke="black" stroke-width="0.5"/> <circle cx="35" cy="25" r="2" fill="yellow" stroke="black" stroke-width="0.5"/> <circle cx="40" cy="25" r="2" fill="yellow" stroke="black" stroke-width="0.5"/> <circle cx="45" cy="25" r="2" fill="yellow" stroke="black" stroke-width="0.5"/> <circle cx="50" cy="25" r="2" fill="yellow" stroke="black" stroke-width="0.5"/> <circle cx="55" cy="25" r="2" fill="yellow" stroke="black" stroke-width="0.5"/> <rect width="5" height="1" x="63" y="25" fill="#233b66" stroke="black" stroke-width="0.5"/> <rect width="5" height="1" x="75" y="25" fill="#233b66" stroke="black" stroke-width="0.5"/> <rect width="5" height="1" x="87" y="25" fill="#233b66" stroke="black" stroke-width="0.5"/> </svg> </body>