SVG 1 Sec B เฮฟเว่น-วิภูภัทร์ ชมถาวร (Copy 17770)
✨ นายวิภูภัทร์ ชมถาวร
<html> <head> <title>SVG </title> <style> body{ background:#666; 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 viewBox="0 0 200 200"> <polygon points="100,10 40,198 190,78 10,78 160,198" style="fill:orange;fill-rule:evenodd;" /> <circle cx="100" cy="110" r="50" fill="black" ></circle> <polygon point=100,110 /> </svg> </body> </html>