SVG Sec B (พรีม-ประภัสสร) ใต้น้ำ
✨ PRAPATSORN CHAIYAPETCH
<html> <head> <title>SVG </title> <style> body{ background:#666; margin:0em; margin-top:2em; font-family:sans-serif; } svg{ background:linear-gradient(0deg, #619196 5%, #84b4c8 40%, #82d9da 100%); width:90vmin; height:90vmin; display:block; margin:auto; box-shadow:0px 0px 10px #0006; } </style> </head> <body> <svg viewBox="0 0 100 100"> <!--bg--> <rect x="60" y="50" width="50" height="50" fill="orange"></rect> <ellipse cx="20" cy="100" rx="70" ry="30" fill="#f9e1e0"></ellipse> <ellipse cx="70" cy="105" rx="90" ry="20" fill="#feadb9"></ellipse> </svg> </body> </html>