SVG Bear (Branch 5589)
✨ WARIT AMONTHANAPINYO
<html> <head> <title>Let's Start </title> <style> body{ background:#333; margin:1em; font-family:sans-serif; } svg{ background:#eee; } </style> </head> <body> <svg viewbox="0 0 40 40"> <circle cx="14" cy="15" fill="#ff9a9f" r="3" stroke="#ffb9b4" stroke-width="1"></circle> <circle cx="26" cy="15" fill="#ff9a9f" r="3" stroke="#ffb9b4" stroke-width="1"></circle> <circle cx="20" cy="20" fill="#ffb9b4" r="8"></circle> <circle cx="17" cy="20" fill="#4b3f4e" r="0.5"></circle> <circle cx="23" cy="20" fill="#4b3f4e" r="0.5"></circle> <ellipse cx="20" cy="24" fill="#ff9a9f" rx="3" ry="2"></ellipse> <circle cx="19" cy="24" fill="#bd4150" r=0.7></circle> <circle cx="21" cy="24" fill="#bd4150" r=0.7></circle> <!-- Grid --> <defs> <pattern id="grid" viewBox="0,0,10,10" width="1%" height="1%"> <rect fill="#0001" width="1" height="10" x="1" y="0"/> <rect fill="#0001" width="1" height="10" x="3" y="0"/> <rect fill="#0001" width="1" height="10" x="5" y="0"/> <rect fill="#0001" width="1" height="10" x="7" y="0"/> <rect fill="#0001" width="1" height="10" x="9" y="0"/> <rect fill="#0001" width="10" height="1" x="0" y="1"/> <rect fill="#0001" width="10" height="1" x="0" y="3"/> <rect fill="#0001" width="10" height="1" x="0" y="5"/> <rect fill="#0001" width="10" height="1" x="0" y="7"/> <rect fill="#0001" width="10" height="1" x="0" y="9"/> <path d="M0 0 h10 L9 1 h-8 v8 L0 10 z" fill="#ff05"/> <path d="M10 10 h-10 L1 9 h8 v-8 L10 0 z" fill="#0f05"/> <rect fill="#0002" width="10" height=".1" x="0" y="9.9"/> <rect fill="#0002" width="10" height=".1" x="0" y="0"/> <rect fill="#0002" height="10" width=".1" y="0" x="9.9"/> <rect fill="#0002" height="10" width=".1" y="0" x="0"/> </pattern> </defs> <!--<rect fill="url(#grid)" width="1000" height="1000" x="0" y="0"/>--> </svg> </body> </html>