SVG Cow
✨ SANTHITA KRAJANGWONGPAISAN
<html> <head> <title>Moooooo!</title> <style> body{ background:#eee; margin:1em; font-family:sans-serif; } svg{ background: #1f1f1f; } #ear-right{ transform: rotate(-30deg); } #ear-left{ transform: rotate(30deg); } </style> </head> <body> <svg viewbox="0 0 100 100"> <polygon points="30,15 40,40 60,30" fill="#e2e2e2"/> <polygon points="70,15 60,38 40,30" fill="#e2e2e2"/> <ellipse id="ear-right"cx="10" cy="44" fill="#d8d3ca" rx="5" ry="10"/> <ellipse id="ear-left" cx="76" cy="-5" fill="#d8d3ca" rx="5" ry="10"/> <rect x="27" y="20" rx="20" ry="17" width="45" height="60" fill="#f7f4ef"/> <polygon points="25,60 27,50 40,40" fill="#f7f4ef"/> <polygon points="74.4,59 66,60 70,44" fill="#f7f4ef"/> <rect x="24.5" y="49" rx="20" ry="20" width="50" height="22" fill="#fddbc7"/> <circle cx="43" cy="60" r="2" fill="#2d2d2d"/> <circle cx="55" cy="60" r="2" fill="#2d2d2d"/> <ellipse cx="41" cy="44" fill="#2d2d2d" rx="3" ry="4"/> <ellipse cx="57" cy="44" fill="#2d2d2d" rx="3" ry="4"/> </svg> </body> </html>