Hello World! (Copy 5120) (Copy 5153) (Copy 5498)
✨ PRATYA DOKBUA
<html> <head> <style> svg{ background:gray; } </style> </head> <body> <svg viewbox="0 0 100 100" style="fill:red;stroke:black;stroke-width:0.5;opacity:1" > <defs> <linearGradient id="eye" x1="0%" y1="0%" x2="0%" y2="100%"> <stop offset="0%" style="stop-color:black;stop-opacity:1" /> <stop offset="100%" style="stop-color:blue;stop-opacity:1" /> </linearGradient> <linearGradient id="mounth" x1="0%" y1="0%" x2="0%" y2="100%"> <stop offset="0%" style="stop-color:hsl(351, 73%, 35%);stop-opacity:1" /> <stop offset="100%" style="stop-color:hsl(351, 85%, 48%);stop-opacity:1" /> </linearGradient> <radialGradient id="body" cx="50%" cy="50%" r="50%" fx="50%" fy="50%"> <stop offset="0%" style="stop-color:hsl(351, 100%, 86%); stop-opacity:1" /> <stop offset="50%" style="stop-color:hsl(350, 100%, 88%); stop-opacity:1" /> <stop offset="100%" style="stop-color:hsl(351, 100%, 86%);stop-opacity:1" /> </radialGradient> </defs> <circle cx="50" cy="50" r="40" fill="url(#body)" /> <ellipse cx="40" cy="35" rx="6" ry="11" fill="black" /> <ellipse cx="60" cy="35" rx="6" ry="11" fill="black" /> <ellipse cx="40" cy="30" rx="4" ry="5" fill="white" /> <ellipse cx="60" cy="30" rx="4" ry="5" fill="white" /> <path d="M34.2,35 a1,2 0 0,0 11.5,0" fill="url(#eye)" /> <path d="M54.2,35 a1,2 0 0,0 11.5,0" fill="url(#eye)" /> <path d="M43,65 a3,4 0 0,0 15,0" fill="url(#mounth)" /> <ellipse cx="15" cy="50" rx="11" ry="3" fill="url(#mounth)" /> <ellipse cx="85" cy="50" rx="11" ry="3" fill="url(#mounth)" /> <rect x="20" y="14" rx="2" ry="5" width="60" height="8" style="fill:white;stroke:black;stroke-width:0.5;opacity:1" /> </svg> </body> </html>