SVG Flag (Branch 4802)
✨ นายณัฐพงษ์ ไวยจรี
<html> <head> <title>Let's Start </title> <style> body{ background:#ccc; margin:1em; font-family:sans-serif; } svg{ height:90vh; background:white; } </style> </head> <body> <svg viewbox="0 0 100 100"> <rect fill="red" width="100" height="20" x="0" y="0" ></rect> <rect fill="white" width="100" height="20" x="0" y="30" ></rect> <rect fill="blue" width="100" height="20" x="0" y="40" ></rect> <rect fill="white" width="100" height="20" x="0" y="60" ></rect> <rect fill="red" width="100" height="20" x="0" y="80" ></rect> <polygon points="0,30 50,30 50,10 100,50 50,90 50,70 0,70 "fill="yellow" /> </svg> </body> </html>