SVG-Fox
✨ TANACHOT LUKVISAITDEE
<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 100 100"> <!-- หัว --> <polygon fill="#ff6600" points="20, 30 80, 30 50, 80"> </polygon> <!-- หูซ้าย --> <polygon fill="#996600" points="30, 30 35, 15 40, 30" stroke="#ff6600" stroke-width="1.5"> </polygon> <!-- หูขวา --> <polygon fill="#996600" points="70, 30 65, 15 60, 30" stroke="#ff6600" stroke-width="1.5"> </polygon> <!-- ตาซ้าย --> <ellipse fill="black" cx="38" cy="40" ry="6" rx="2"></ellipse> <circle fill="white" cx="37.5" cy="39" r="1.5"></circle> <!-- ตาขวา --> <ellipse fill="black" cx="62" cy="40" ry="6" rx="2"></ellipse> <circle fill="white" cx="61.5" cy="39" r="1.5"></circle> <!-- ทั้งจมูก --> <polygon fill="#ffcc99" points="41,30 50,57 59,30"></polygon> <ellipse fill="black" cx="50" cy="60" ry="3" rx="3"></ellipse> <!-- หนวดซ้าย --> <line x1="35" y1="50" x2="25" y2="49" stroke="black" stroke-width="0.5"></line> <line x1="38" y1="55" x2="28" y2="55" stroke="black" stroke-width="0.5"></line> <line x1="40" y1="60" x2="30" y2="61" stroke="black" stroke-width="0.5"></line> <!-- หนวดขวา --> <line x1="65" y1="50" x2="75" y2="49" stroke="black" stroke-width="0.5"></line> <line x1="62" y1="55" x2="72" y2="55" stroke="black" stroke-width="0.5"></line> <line x1="59" y1="60" x2="69" y2="61" stroke="black" stroke-width="0.5"></line> </svg> </body> </html>