SVG 1 Sec B เฮฟเว่น-วิภูภัทร์ ชมถาวร (Copy 17755)
✨ นายวิภูภัทร์ ชมถาวร
<html> <head> <title>SVG </title> <style> body{ background:#666; margin:0em; margin-top:2em; font-family:sans-serif; } svg{ background:cyan; width:90vmin; height:90vmin; display:block; margin:auto; box-shadow:0px 0px 10px #0006; } </style> </head> <body> <svg viewBox="0 0 100 100"> <circle cx="20" cy="20" r="20" fill="black"></circle> <circle cx="80" cy="20" r="20" fill="black" ></circle> <circle cx="50" cy="50" r="40" fill="white"></circle> <circle cx="35" cy="30" r="10" fill="black" stroke="green" stroke-width="4"></circle> <circle cx="65" cy="30" r="10" fill="black" stroke="green" stroke-width="4"></circle> <ellipse cx="50" cy="60" rx="20" ry="10" fill="black" /> </svg> </body> </html>