SVG 1 Sec C (Copy 17955)
✨ Jabont
<html> <head> <title>SVG </title> <style> body{ background:#666; margin:0em; margin-top:2em; font-family:sans-serif; } svg{ background:#fff; 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="30" cy="25" r="10" stroke="deeppink" fill="pink" /> <circle cx="70" cy="25" r="10" stroke="deeppink" fill="pink" /> <circle cx="50" cy="50" r="30" stroke="deeppink" fill="pink" /> <circle cx="30" cy="60" r="5" fill="deeppink" /> <circle cx="70" cy="60" r="5" fill="deeppink" /> <circle cx="40" cy="50" r="5" fill="white" /> <circle cx="60" cy="50" r="5" fill="white" /> <circle cx="40" cy="52" r="2" fill="black" /> <circle cx="60" cy="52" r="2" fill="black" /> <circle cx="41" cy="52" r=".5" fill="white" /> <circle cx="61" cy="52" r=".5" fill="white" /> <circle cx="50" cy="70" r="8" fill="white" /> <!-- <ellipse cx="50" cy="15" rx="20" ry="10" fill="red" /> --> </svg> </body> </html>