SVG Flag (Branch 4824)
✨ นางสาววรณัน วารีประเสริฐ
<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="80" height="40" x="5" y="20" ></rect> <rect fill="white" width="5" height="40" x="25" y="20" ></rect> <rect fill="white" width="80" height="5" x="5" y="37" ></rect> </svg> </body> </html>