SVG 1 Sec C (เนี้ยว-วิรัลยุพา)
✨ นางสาววิรัลยุพา เพ็ชรอินทร์
<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"> <polygon points=" 20,30 40,30 40,10 50,10 50,30 70,30 70,40 50,40 50,80 40,80 40,40 20,40 " stroke="red" fill="yellow" stroke-width="1"/> <polygon points=" 30,20 25,10 20,10 " stroke="red" fill="yellow" stroke-width="1"/> <polygon points=" 60,20 65,10 70,10 " stroke="red" fill="yellow" stroke-width="1"/> </svg> </body> </html>