SVG 1 Sec B (Branch 17650) (Copy 17911)
✨ นายนนทพัทธ์ จิ๋วน๊อต
<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 210 500"> <polygon points="100,10 40,198 190,78 10,78 160,198" style="fill:yellow;stroke:black;stroke-width:5;fill-rule:evenodd;" /> <circle cx="100" cy="110" r="40"></circle> <!-- <rect width="50" height="50" x="25" y="50" fill="grey"></rect> <polygon points="10,50 10,100 10,10 50,10" fill="grey"></polygon> --> <!-- <rect width="50" height="50" x="25" y="50"></rect> --> </svg> </body> </html>