SVG เต้ย
✨ Jakarin Yensuk
<html> <head> <title>Let's Start </title> <style> body{ background:#ccc; margin:1em; font-family:sans-serif; } </style> </head> <body> <svg viewbox="0 0 24 24"> <rect x="0" y="0" rx="5" ry="5" width="24" height="24" fill="white"></rect> <circle cx="12" cy="12" r="8" fill="#FF69B4"></circle> <circle cx="8.5" cy="15" r="1" fill="white"></circle> <circle cx="14.5" cy="14" r="1" fill="white"></circle> <rect x="8.5" y="10" width="1" height="5" fill="white"></rect> <rect x="14.5" y="9" width="1" height="5" fill="white"></rect> <rect x="8.5" y="8" rx="1" ry="1" width="7" height="3.5" style="fill:white"/> </svg> </body> </html>