SVG 1 Sec C วิน-วิน
✨ Wiwat Liangkobkit
<html> <head> <title>SVG </title> <style> body{ margin:0em; margin-top:2em; font-family:sans-serif; } svg{ background:pink; width:90vmin; height:90vmin; display:block; margin:auto; box-shadow:0px 0px 10px #0006; } </style> </head> <body> <svg viewBox="0 0 100 100"> <polygon points="50,20 60,198 190,28 0,78 150,148" style="fill:yellow;stroke:yellow;stroke-width:5;"/> </svg> </body> </html>