SVG Panda
✨ PARANEENIPA SONGMUANG
<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"> <text x="25" y="2" fill="black" style="font-size:1;">ภรณีนิภา สองเมือง 63070130</text> <!-- หูแพนด้า --> <circle cx="10" cy="14" fill="hsl(0,100%,0%)" r="6"></circle> <svg x="20"> <circle cx="10" cy="14" fill="hsl(0,100%,0%)" r="6"></circle></svg> <!-- หน้าแพนด้า --> <ellipse stroke="black" stroke-width="0.75"cx="20" cy="22" rx="14" ry="12" fill="black" /> <ellipse cx="20" cy="22" rx="14" ry="12" fill="hsl(0,0%,100%)" /> <svg> <!-- ตาแพนด้าดำนอก --> <ellipse cx="14" cy="21" rx="3.5" ry="4" fill="hsl(0,100%,0%)" /> <circle cx="14.3" cy="20" fill="white" r="1.75"></circle> </svg> <svg x="10"> <!-- ตาแพนด้าขาวใน --> <ellipse cx="16" cy="21" rx="3.5" ry="4" fill="hsl(0,100%,0%)" /> <circle cx="15.7" cy="20" fill="white" r="1.75"></circle> </svg> <svg x="10"> <!-- ตาแพนด้าดำใน --> <circle cx="15.7" cy="20" fill="black" r="1.25"></circle> <circle cx="4.3" cy="20" fill="black" r="1.25"></circle> </svg> <svg y="3"> <!-- จมูก --> <ellipse cx="20" cy="23" rx="3" ry="1.5" fill="hsl(0,100%,0%)" /> <ellipse cx="18" cy="23" rx="0.5" ry="0.5" fill="white" /> <line x1="20" y1="23" x2="20" y2="26" stroke="black" stroke-width="0.5" stroke-linecap="round" /> </svg> <svg y="3"> <path d="M 15 26 Q 19,28 20,26" stroke="black" stroke-width="0.5" fill="transparent"/> <path d="M 20 26 Q 21,28 25,26" stroke="black" stroke-width="0.5" fill="transparent"/> </svg> <!-- 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>