คิม-ธนวรรษ 64070158 Sec B (Copy 17728)
✨ นายธนวรรษ นันทะกูล
<html> <head> <title>SVG</title> <style> body{ background:#eee; margin:0em; margin-top:2em; font-family:sans-serif; } svg{ background:white; width:90vmin; height:90vmin; display:block; margin:auto; box-shadow: 0px 0px 10px #0006; } </style> </head> <body> <svg height="500" width="500"> <circle cx="250" cy="250" r="100" stroke="black" stroke-width="10" fill="white" /> <circle cx="550" cy="250" r="100" stroke="black" stroke-width="3" fill="white" /> <circle cx="50%" cy="50%" r="200" stroke="white" stroke-width="3" fill="black" /> <circle cx="50%" cy="50%" r="50" stroke="white" stroke-width="10" fill="red" /> <circle cx="300" cy="300" r="30" stroke="white" stroke-width="3" fill="white" /> <circle cx="456" cy="300" r="30" stroke="white" stroke-width="3" fill="white" /> </svg> </body> </html>