<!DOCTYPE html> <html> <body> <svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <defs> <linearGradient id="grad1" x1="100%" y1="100%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#ffffff" stop-opacity="0" /> <stop offset="0%" stop-color="#ffffff" stop-opacity="0.4" /> <stop offset="100%" stop-color="#F06292" stop-opacity="1" /> </linearGradient> </defs> <ellipse cx="200" cy="75" rx="85" ry="50" fill="url(#grad1)" /> </svg> </body> </html>